-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
41 lines (41 loc) · 933 Bytes
/
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
{
"name": "vue3-touch-events",
"version": "5.0.12",
"description": "Simple touch events support for vue.js 3",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist && bunx tsc",
"dev": "bun build ./src/index.ts --outdir ./dist --watch & bunx tsc --watch",
"test": "bun test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinrodricks/vue3-touch-events.git"
},
"keywords": [
"vue",
"touch",
"tap",
"swipe",
"longtap"
],
"author": "Robin Rodricks",
"license": "MIT",
"bugs": {
"url": "https://github.com/robinrodricks/vue3-touch-events/issues"
},
"homepage": "https://github.com/robinrodricks/vue3-touch-events#readme",
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.7.3"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}