-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "@chaos-design/chaos",
"version": "0.0.6",
"description": "For fastly and easily to frontend development by the tool",
"private": true,
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"typecheck": "tsc -p scripts --noEmit && pnpm -r --parallel run typecheck",
"lint": "eslint --cache ./packages/*",
"format": "prettier --write --cache .",
"build": "pnpm -r --filter='./packages/*' run build",
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"release-all": "bumpp packages/**/package.json",
"release": "bumpp packages/**/package.json packages/**/*/package.json",
"publish-pkg": "sh ./scripts/publish-to-npm.sh"
},
"keywords": [
"chaos",
"create-chaos",
"chaos",
"create tool"
],
"license": "MIT",
"author": "Rain120",
"repository": {
"type": "git",
"url": "https://github.com/chaos-design/chaos.git"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --cache --fix"
],
"packages/**/*.d.ts": [
"eslint --cache --fix"
]
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/node": "^20.3.3",
"bumpp": "^9.1.1",
"eslint": "^8.44.0",
"eslint-config-chaos": "latest",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"zx": "^8.1.4"
}
}