-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
43
44
45
{
"name": "vtouchdir",
"version": "0.0.7",
"packageManager": "[email protected]",
"description": "vue3 touch direction directive",
"module": "es/index.js",
"main": "lib/index.js",
"scripts": {
"test:watch": "vitest",
"test": "vitest run",
"dist": "tsc -p tsconfig.dist.json",
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"release": "pnpm run build && pnpm publish --access public --no-git-checks",
"major": "standard-version -r major",
"minor": "standard-version -r minor",
"patch": "standard-version -r patch"
},
"files": [
"lib",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/a145789/vtouchdir.git"
},
"author": "clencat",
"license": "MIT",
"bugs": {
"url": "https://github.com/a145789/vtouchdir/issues"
},
"homepage": "https://github.com/a145789/vtouchdir#readme",
"peerDependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@babel/types": "^7.22.4",
"@types/node": "^20.2.5",
"@vue/test-utils": "^2.3.2",
"standard-version": "^9.5.0",
"jsdom": "^22.1.0",
"typescript": "^5.1.3",
"vitest": "^0.31.4",
"vue": "^3.3.4"
}
}