-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"packageManager": "[email protected]",
"scripts": {
"version": "pnpm install && git add pnpm-lock.yaml",
"preinstall": "npx only-allow pnpm",
"release:version": "pnpm run ci && lerna version --force-publish",
"release:publish": "lerna publish from-git --yes --no-verify-access",
"ci": "npm-run-all format:validate ci:subpackages",
"compile": "pnpm -r run clean && tsc --build",
"compile:watch": "pnpm -r run clean && tsc --build --watch",
"ci:subpackages": "pnpm -r run ci",
"format:fix": "prettier --write \"**/*.@(ts|js|json|md|yml)\"",
"format:validate": "prettier --check \"**/*.@(ts|js|json|md|yml)\"",
"prepare": "husky install"
},
"prettier": {
"endOfLine": "lf"
},
"lint-staged": {
"*.{ts,js,json,md,yml}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@types/chai": "5.0.0",
"@types/mocha": "10.0.9",
"@types/node": "18.19.57",
"chai": "5.1.1",
"typescript": "5.6.3",
"fs-extra": "11.2.0",
"husky": "9.1.6",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"mocha": "10.7.3",
"npm-run-all2": "6.2.4",
"prettier": "3.3.3",
"shx": "0.3.4",
"cz-conventional-changelog": "3.3.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"source-map-support": "0.5.21",
"c8": "10.1.2"
}
}