-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.89 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.89 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
{
"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 || 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.11.0",
"@types/mdast": "^4.0.4",
"@types/node": "^24.10.1",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-react-x": "^2.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.7.4"
},
"dependencies": {
"@actions/core": "^2.0.1",
"@clack/prompts": "^0.11.0",
"@heroicons/react": "^2.2.0",
"@node-core/rehype-shiki": "1.3.0",
"@node-core/ui-components": "1.5.6",
"@orama/orama": "^3.1.18",
"@orama/ui": "^1.5.4",
"@rollup/plugin-virtual": "^3.0.2",
"@swc/html": "^1.15.7",
"acorn": "^8.15.0",
"commander": "^14.0.2",
"dedent": "^1.7.1",
"estree-util-to-js": "^2.0.0",
"estree-util-visit": "^2.0.0",
"github-slugger": "^2.0.0",
"globals": "^16.5.0",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.1",
"lightningcss": "^1.30.2",
"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-beta.57",
"semver": "^7.7.3",
"shiki": "^3.20.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.0.0",
"vfile": "^6.0.3",
"yaml": "^2.8.2"
}
}