-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@algorithm.ts/root",
"version": "0.0.0",
"private": true,
"author": {
"name": "guanghechen",
"url": "https://github.com/guanghechen/"
},
"repository": {
"type": "git",
"url": "https://github.com/guanghechen/algorithm.ts"
},
"homepage": "https://github.com/guanghechen/algorithm.ts",
"type": "module",
"scripts": {
":publish": "yarn build:production && yarn test:coverage && lerna publish",
":publish-recover": "git stash && lerna publish from-package",
":upgrade": "yarn upgrade-interactive && run-s clean format build test",
"build": "nx run-many --target=build --all=true --parallel=false",
"build:production": "nx run-many --target=build --configuration=production --all=true --parallel=false",
"clean": "nx run-many --target=clean --all=true && yarn install",
"format": "run-s format:lintfix format:prettier",
"format:prettier": "prettier . --write",
"format:lintfix": "eslint . --fix",
"prepublishOnly": "pinst --disable",
"postinstall": "run-s postinstall:dev",
"postinstall:dev": "is-ci || husky",
"postpublish": "pinst --enable",
"rebuild": "run-s clean build",
"run:ts": "node --loader ts-node/esm",
"test": "nx run-many --target=test --all=true",
"test:coverage": "nx run-many --target=test --configuration=coverage --all=true",
"test:update": "nx run-many --target=test --configuration=update --all=true",
"version": "yarn && ghc-doc-link-rewrite && git stage -u yarn.lock packages/**/package.json packages/**/*.md"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@guanghechen/chalk": "^1.0.3",
"@guanghechen/conventional-changelog": "^6.0.1",
"@guanghechen/eslint-config": "^7.0.10",
"@guanghechen/jest-config": "^6.0.2",
"@guanghechen/monorepo": "^1.0.1",
"@guanghechen/reporter": "^1.0.5",
"@guanghechen/rollup-config": "^6.0.2",
"@guanghechen/script-doc-link": "^6.0.2",
"@types/jest": "29.5.13",
"@types/node": "20.16.10",
"cross-env": "7.0.3",
"eslint": "9.12.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"nx": "19.8.4",
"pinst": "3.0.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.24.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"lint-staged": {
"*.{js,ts,mts}": [
"eslint --fix",
"prettier --write"
],
"*.{md,json,eslintrc}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}