-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "touchsweep",
"version": "2.2.0",
"description": "Super tiny vanilla JS module to detect swipe direction",
"keywords": [
"Touch swipe",
"Touch events",
"Mouse events",
"Touch event detection",
"Mouse event detection"
],
"homepage": "https://touchsweep.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/touchsweep/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/touchsweep.js",
"types": "dist/touchsweep.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/touchsweep"
},
"scripts": {
"lint": "eslint",
"copy": "cp -r dist demo",
"clean": "rm -rf dist && rm -rf demo/dist",
"build": "yarn clean && rollup -c && yarn copy"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@typescript-eslint/eslint-plugin": "8.64.0",
"@typescript-eslint/parser": "8.64.0",
"eslint": "10.7.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.7.0",
"rollup": "4.62.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}