-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.61 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
{
"name": "moc-docs",
"type": "module",
"version": "1.0.0",
"repository": "[email protected]:matrixone-cloud/moc-docs.git",
"license": "MIT",
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"engines": {
"node": ">=22.3.0"
},
"scripts": {
"config:zhlint": "tsx ./scripts/zhlint-config.ts",
"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": "tsx ./scripts/autocorrect.ts",
"lint:autocorrect:fix": "tsx ./scripts/autocorrect.ts --fix",
"lint:zhlint": "npm run config:zhlint && npx zhlint './docs/MatrixOne-Cloud/**/*.md'",
"lint:zhlint:fix": "npm run config:zhlint && npx zhlint './docs/MatrixOne-Cloud/**/*.md' --fix",
"lint:markdownlint": "markdownlint-cli2 './docs/MatrixOne-Cloud/**/*.md'",
"lint:markdownlint:fix": "markdownlint-cli2 --fix './docs/MatrixOne-Cloud/**/*.md'"
},
"devDependencies": {
"@types/diff": "^6.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.2",
"autocorrect-node": "^2.13.0",
"chalk": "^5.3.0",
"diff": "^7.0.0",
"fast-glob": "^3.3.2",
"markdownlint-cli2": "^0.16.0",
"minimist": "^1.2.8",
"tinyglobby": "^0.2.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"yaml": "^2.6.1",
"zhlint": "0.8.2"
},
"pnpm": {
"overrides": {
"trim@<0.0.3": ">=0.0.3",
"yaml@>=2.0.0-5 <2.2.2": ">=2.2.2"
}
}
}