-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@doc-kit/core",
"type": "module",
"version": "1.0.0",
"description": "The doc-kit engine: the pipeline and shared APIs that power the doc-kit generators and CLI",
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs/doc-kit.git",
"directory": "packages/core"
},
"license": "MIT",
"scripts": {
"test": "node --test --experimental-test-module-mocks \"src/**/*.test.mjs\"",
"test:coverage": "c8 node --test --experimental-test-module-mocks \"src/**/*.test.mjs\"",
"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\""
},
"main": "./src/generators.mjs",
"exports": {
".": "./src/generators.mjs",
"./ast": "./src/generators/ast/index.mjs",
"./ast-js": "./src/generators/ast-js/index.mjs",
"./json-simple": "./src/generators/json-simple/index.mjs",
"./metadata": "./src/generators/metadata/index.mjs",
"./package.json": "./package.json",
"./shiki.config.mjs": "./shiki.config.mjs",
"./src/*": "./src/*",
"./*": [
"./src/*",
"./src/*.d.ts"
]
},
"imports": {
"#generators/*": "./src/generators/*",
"#logger/*": "./src/logger/*",
"#parsers/*": [
"./src/parsers/*",
"./src/parsers/*.d.ts"
],
"#utils/*": "./src/utils/*"
},
"files": [
"src",
"!src/**/*.test.mjs",
"!src/**/__tests__",
"shiki.config.mjs",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@actions/core": "^3.0.0",
"@node-core/rehype-shiki": "^1.4.3",
"@swc/html-wasm": "^1.15.46",
"@swc/wasm": "^1.15.46",
"acorn": "^8.17.0",
"cosmiconfig": "^9.0.2",
"dedent": "^1.7.2",
"github-slugger": "^2.0.0",
"glob-parent": "^6.0.2",
"hastscript": "^9.0.1",
"piscina": "^5.3.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-stringify": "^11.0.0",
"semver": "^7.8.5",
"shiki": "^4.3.0",
"tinyglobby": "^0.2.17",
"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",
"yaml": "^2.9.0"
},
"devDependencies": {
"hast-util-to-html": "^9.0.5",
"hast-util-to-string": "^3.0.1"
},
"peerDependencies": {
"@node-core/doc-kit": "workspace:>=2.0.0",
"@node-core/doc-kit-legacy": "workspace:>=1.0.0",
"@doc-kit/generator-react": "workspace:>=0.1.0"
},
"peerDependenciesMeta": {
"@node-core/doc-kit": {
"optional": true
},
"@node-core/doc-kit-legacy": {
"optional": true
},
"@doc-kit/generator-react": {
"optional": true
}
}
}