-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 KB
/
package.json
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
{
"description": "A front-end library for managing touch screen events on mobile devices.",
"homepage": "https://github.com/obrymec/swipe_events_manager#readme",
"files": ["./build/swipe.d.ts", "./build/swipe.js"],
"author": "Obrymec - https://obrymec.vercel.app",
"name": "@prince-obrymec/swipe-events-manager",
"types": "./build/swipe.d.ts",
"main": "./build/swipe.js",
"sideEffects": false,
"version": "1.1.1",
"license": "MIT",
"bugs": {
"url": "https://github.com/obrymec/swipe_events_manager/issues"
},
"repository": {
"url": "https://github.com/obrymec/swipe_events_manager.git",
"type": "git"
},
"dependencies": {
"uglify-js": "^3.17.4",
"typescript": "^5.2.2",
"parcel": "^2.9.3"
},
"scripts": {
"purge": "rm -rf ./.parcel-cache && rm -rf ./dist",
"start": "yarn run purge && parcel ./index.html",
"build": "chmod +x ./dist.sh && bash ./dist.sh",
"publish": "npm publish --access=public"
},
"keywords": [
"touchevent",
"touchstart",
"detection",
"touchend",
"detect",
"mobile",
"device",
"touch",
"swipe",
"event"
]
}