-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "@node-core/api-docs-tooling",
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/api-docs-tooling.git"
},
"scripts": {
"lint": "eslint . --no-warn-ignored",
"lint:fix": "eslint --fix . --no-warn-ignored",
"format": "prettier .",
"format:write": "prettier --write .",
"test": "node --test",
"test:coverage": "node --experimental-test-coverage --test",
"test:update-snapshots": "node --test --test-update-snapshots",
"test:watch": "node --test --watch",
"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.23.0",
"@types/mdast": "^4.0.4",
"@types/node": "^22.13.11",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsdoc": "^50.6.8",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "3.5.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@orama/orama": "^3.1.3",
"@orama/plugin-data-persistence": "^3.1.3",
"acorn": "^8.14.1",
"commander": "^13.1.0",
"dedent": "^1.5.3",
"estree-util-visit": "^2.0.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.1",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"html-minifier-terser": "^7.2.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"semver": "^7.7.1",
"shiki": "^3.2.1",
"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.7.0"
}
}