-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.9 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.9 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
{
"name": "@nodejs/doc-kit",
"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": {
"doc-kit": "./bin/cli.mjs"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@reporters/github": "^1.9.1",
"@types/mdast": "^4.0.4",
"@types/node": "^22.15.29",
"c8": "^10.1.3",
"eslint": "^9.33.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^53.0.1",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "3.6.2"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@heroicons/react": "^2.2.0",
"@minify-html/node": "^0.16.4",
"@node-core/rehype-shiki": "1.0.1-b8e314e799e27da854d47f211c1fed36810b969a",
"@node-core/ui-components": "1.0.1-5909a0bd471c5bfddac4f1bf7eee50aea0274970",
"@orama/orama": "^3.1.11",
"@orama/react-components": "^0.8.1",
"@rollup/plugin-virtual": "^3.0.2",
"acorn": "^8.15.0",
"commander": "^14.0.0",
"dedent": "^1.6.0",
"eslint-plugin-react-x": "^1.52.3",
"estree-util-to-js": "^2.0.0",
"estree-util-visit": "^2.0.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"lightningcss": "^1.30.1",
"mdast-util-slice-markdown": "^2.0.1",
"preact": "^10.27.0",
"preact-render-to-string": "^6.5.13",
"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-beta.32",
"semver": "^7.7.2",
"shiki": "^3.11.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.8.1"
}
}