generated from accurtype/monodemo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.28 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
{
"$schema": "https://json.schemastore.org/package",
"private": true,
"name": "ooxx3d-web",
"description": "3D 圈叉棋",
"license": "AGPL-3.0-or-later",
"author": "e0selmy4v",
"repository": {
"url": "git+https://github.com/n9gc/ooxx3d-web",
"type": "git"
},
"type": "module",
"scripts": {
"runall": "pnpm -F=config -F=./packages/* -F=docs",
"prepare": "husky",
"prepareall": "pnpm runall prepare",
"cz": "pnpm lint && cz",
"prefmt": "prettier -w .",
"fmt": "eslint . --fix",
"prelint": "prettier -c .",
"lint": "eslint .",
"build": "pnpm runall build",
"clean": "pnpm runall clean",
"test": "pnpm runall test"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"commitizen": "^4.3.1",
"cz-customizable": "^7.2.1",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"@types/tape": "^5.6.4",
"tape": "^5.9.0",
"colortape": "^0.1.2",
"c8": "^10.1.2",
"tsx": "^4.19.2",
"serve": "^14.2.4",
"typescript": "^5.6.3"
},
"config": {
"cz-customizable": {
"config": "./config/cz-config.cjs"
},
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"prettier": {
"printWidth": 200,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all"
}
}