-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
34 lines (34 loc) · 1.15 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
{
"name": "matrixorigin.io.cn",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"config:zhlint": "node ./scripts/genZhlintConfig",
"lint": "npm run lint:autocorrect && npm run lint:zhlint && npm run lint:markdownlint",
"lint:fix": "npm run lint:autocorrect:fix && npm run lint:zhlint:fix && npm run lint:markdownlint:fix",
"lint:autocorrect": "node ./scripts/autocorrect",
"lint:autocorrect:fix": "node ./scripts/autocorrect --fix",
"lint:zhlint": "npm run config:zhlint && npx zhlint './docs/MatrixOne/**/*.md'",
"lint:zhlint:fix": "npm run config:zhlint && npx zhlint './docs/MatrixOne/**/*.md' --fix",
"lint:markdownlint": "markdownlint-cli2 './docs/MatrixOne/**/*.md'",
"lint:markdownlint:fix": "markdownlint-cli2-fix './docs/MatrixOne/**/*.md'"
},
"devDependencies": {
"autocorrect-node": "^2.8.4",
"chalk": "^5.3.0",
"diff": "^5.1.0",
"fast-glob": "^3.3.1",
"markdownlint-cli2": "^0.10.0",
"minimist": "^1.2.8",
"yaml": "^2.3.4",
"zhlint": "^0.7.1"
},
"pnpm": {
"overrides": {
"trim@<0.0.3": ">=0.0.3"
}
},
"dependencies": {
"run": "^1.5.0"
}
}