-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "@node-core/api-docs-tooling",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier .",
"format:write": "prettier --write .",
"test": "node --test",
"test:watch": "node --test --watch",
"test:coverage": "node --experimental-test-coverage --test",
"prepare": "husky",
"run": "node bin/cli.mjs",
"watch": "node --watch bin/cli.mjs"
},
"main": "./src/index.mjs",
"bin": {
"api-docs-tooling": "./bin/cli.mjs"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.4.1"
},
"dependencies": {
"commander": "^12.1.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.0",
"html-minifier-terser": "^7.2.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"semver": "^7.6.3",
"shiki": "^1.24.0",
"unified": "^11.0.5",
"unist-builder": "^4.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-position": "^5.0.0",
"unist-util-remove": "^4.0.0",
"unist-util-select": "^5.1.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
"yaml": "^2.6.1"
}
}