-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.62 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.62 KB
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
78
{
"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 .",
"format:check": "prettier --check .",
"test": "node --test --experimental-test-module-mocks",
"test:coverage": "c8 npm test",
"test:ci": "c8 --reporter=lcov node --test --experimental-test-module-mocks --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=junit.xml --test-reporter=spec --test-reporter-destination=stdout",
"test:update-snapshots": "node --test --experimental-test-module-mocks --test-update-snapshots",
"test:watch": "node --test --experimental-test-module-mocks --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.28.0",
"@reporters/github": "^1.7.2",
"@types/mdast": "^4.0.4",
"@types/node": "^22.15.29",
"c8": "^10.1.3",
"eslint": "^9.28.0",
"eslint-plugin-import-x": "^4.15.0",
"eslint-plugin-jsdoc": "^50.7.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "3.5.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@clack/prompts": "^0.11.0",
"@minify-html/node": "^0.16.4",
"@node-core/rehype-shiki": "1.0.1-1815fa769361b836fa52cfab9c5bd4991f571c95",
"@orama/orama": "^3.1.7",
"@orama/plugin-data-persistence": "^3.1.7",
"acorn": "^8.14.1",
"commander": "^14.0.0",
"dedent": "^1.6.0",
"estree-util-value-to-estree": "^3.4.0",
"estree-util-visit": "^2.0.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.2",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"reading-time": "^1.5.0",
"recma-jsx": "^1.0.0",
"rehype-recma": "^1.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"semver": "^7.7.1",
"shiki": "^3.4.2",
"unified": "^11.0.5",
"unist-builder": "^4.0.0",
"unist-util-find": "^3.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-find-before": "^4.0.1",
"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.1"
}
}