-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"private": true,
"type": "module",
"scripts": {
"build:all": "pnpm --filter \"./packages/*\" build",
"format": "prettier --write .",
"gen:docs": "typedoc --options typedoc.json",
"preinstall": "npx only-allow pnpm",
"postinstall": "git config --local include.path ../.github/.gitconfig && git config core.hooksPath .github/.githooks",
"lint": "ls-lint && eslint .",
"test:all": "pnpm --filter \"./packages/*\" test"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@ls-lint/ls-lint": "^2.2.3",
"@types/chai": "^5.0.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^5.1.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"glob": "^11.0.0",
"json": "^11.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-package-json": "^2.8.0",
"prettier-plugin-sh": "^0.14.0",
"semantic-release": "^24.0.0",
"tslib": "^2.6.2",
"tsx": "^4.10.0",
"typedoc": "^0.27.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20"
}
}