-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.73 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
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"packages/*/examples"
],
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"clean": "yarn workspaces foreach -A run clean",
"build:clean": "run-s clean build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint:check": "eslint '**/*.ts'",
"eslint:fix": "eslint --fix '**/*.ts'",
"lint:check": "run-s eslint:check prettier:check",
"lint:fix": "run-s eslint:fix prettier:fix",
"test:coverage": "yarn workspaces foreach -Rpt --from '{char-info,parjs}' run test:coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn run build:clean && lint-staged"
}
},
"lint-staged": {
"*.{ts,js,mjs,mts,cjs,cts}": "eslint --cache --fix",
"*.{ts,js,mts,mjs,cts,cjs,css,md,yml,yaml,json}": "prettier --write"
},
"prettier": "./.prettierrc.json",
"dependencies": {
"char-info": "workspace:^",
"parjs": "workspace:^"
},
"devDependencies": {
"@types/node": "20.9.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.2.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"madge": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.1",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-packagejson": "2.5.0",
"shelljs": "0.8.5",
"shx": "0.3.4",
"ts-node": "10.9.1",
"typedoc": "0.25.13",
"typedoc-plugin-internal-external": "2.2.0",
"typescript": "^5.4.5"
},
"packageManager": "yarn@4.2.2",
"engines": {
"node": ">=16.0.0"
}
}