-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.06 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.06 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@nodejs/doc-kit",
"type": "module",
"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 \"src/**/*.test.mjs\"",
"test:coverage": "c8 node --test --experimental-test-module-mocks \"src/**/*.test.mjs\"",
"test:ci": "c8 --reporter=lcov node --test --experimental-test-module-mocks \"src/**/*.test.mjs\" --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 \"src/**/*.test.mjs\"",
"test:watch": "node --test --experimental-test-module-mocks --watch \"src/**/*.test.mjs\"",
"prepare": "husky || exit 0",
"run": "node bin/cli.mjs",
"watch": "node --watch bin/cli.mjs"
},
"main": "./src/index.mjs",
"bin": {
"doc-kit": "./bin/cli.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@reporters/github": "^1.12.0",
"@types/mdast": "^4.0.4",
"@types/node": "^24.10.1",
"@types/semver": "^7.7.1",
"c8": "^11.0.0",
"eslint": "^9.39.2",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^62.4.1",
"eslint-plugin-react-x": "^2.8.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.8.1"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@heroicons/react": "^2.2.0",
"@minify-html/wasm": "^0.18.1",
"@node-core/rehype-shiki": "^1.4.1",
"@node-core/ui-components": "^1.6.0",
"@orama/orama": "^3.1.18",
"@orama/ui": "^1.5.4",
"@rollup/plugin-virtual": "^3.0.2",
"acorn": "^8.16.0",
"commander": "^14.0.3",
"dedent": "^1.7.1",
"estree-util-to-js": "^2.0.0",
"estree-util-visit": "^2.0.0",
"github-slugger": "^2.0.0",
"globals": "^17.3.0",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"lightningcss-wasm": "^1.31.1",
"mdast-util-slice-markdown": "^2.0.1",
"piscina": "^5.1.4",
"preact": "^11.0.0-beta.0",
"preact-render-to-string": "^6.6.3",
"reading-time": "^1.5.0",
"recma-jsx": "^1.0.1",
"rehype-raw": "^7.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",
"rolldown": "^1.0.0-rc.6",
"semver": "^7.7.4",
"shiki": "^3.23.0",
"tinyglobby": "^0.2.15",
"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.1.0",
"vfile": "^6.0.3",
"yaml": "^2.8.2"
}
}