-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
{
"name": "@thing772/utils",
"descriptions": "常用方法封装",
"version": "0.0.6",
"main": "dist/index.js",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"commit": "cz",
"build": "tsc",
"release": "cross-env HUSKY=0 commit-and-tag-version"
},
"type": "module",
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@eslint/js": "^9.20.0",
"commit-and-tag-version": "^12.5.0",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"typescript": "^5.7.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"lil-gui": "^0.20.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ting772/utils"
},
"bugs": {
"url": "https://github.com/ting772/utils/issues"
},
"homepage": "https://github.com/ting772/utils",
"commit-and-tag-version": {
"scripts": {
"posttag": "git push --follow-tags && tsc &&npm publish"
}
}
}