-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "learn-use-gesture",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@7.26.0",
"description": "",
"author": {
"name": "眼圈发黑",
"email": "1449826851@qq.com"
},
"license": "MIT",
"homepage": "https://github.com/yanquanfahei/learn-use-gesture#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yanquanfahei/learn-use-gesture.git"
},
"bugs": "https://github.com/yanquanfahei/learn-use-gesture/issues",
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "npx simple-git-hooks",
"dev": "unbuild --stub",
"build": "unbuild",
"lint": "eslint --fix",
"prepublishOnly": "pnpm build",
"test": "vitest",
"release": "bumpp package.json --commit --push --tag && pnpm publish --access public"
},
"devDependencies": {
"@eye-socket/eslint-config-ts": "^0.0.2",
"@types/node": "^18.13.0",
"bumpp": "^9.0.0",
"chalk": "^5.2.0",
"eslint": "^8.34.0",
"lint-staged": "^13.1.2",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.5",
"unbuild": "^1.1.1",
"vitest": "^0.29.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*.{ts,js,json,json5}": "eslint --fix"
}
}