-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.94 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.94 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
{
"name": "@open-rpc/markdown-gen-root",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.0.0-development",
"scripts": {
"types": "bun run types:md-gen && bun run types:plugin",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "bun run build:md-gen && bun run build:plugin",
"build:md-gen": "bun run --cwd packages/markdown-generator build.ts",
"build:plugin": "bun run --cwd packages/docusaurus-plugin build.ts",
"build:all": "bun run build:md-gen && bun run build:plugin",
"types:md-gen": "bun run --cwd packages/markdown-generator tsc -p tsconfig.json",
"types:plugin": "bun run --cwd packages/docusaurus-plugin tsc -p tsconfig.json",
"types:all": "bun run types:md-gen && bun run types:plugin",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build:all && bun run types:all && changeset publish",
"ci:version": "changeset version && bun update",
"ci:publish": "for dir in packages/markdown-generator packages/docusaurus-plugin; do (cd \"$dir\" && bun publish --access public || true); done && changeset tag"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.3",
"@types/bun": "^1.3.9",
"@types/node": "22.13.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"typescript": "~5.9.3"
},
"dependencies": {
"@json-schema-tools/traverse": "^1.11.0",
"@open-rpc/examples": "^1.7.2",
"@open-rpc/schema-utils-js": "^2.2.1",
"@open-rpc/spec-types": "^0.0.2",
"mdast": "^3.0.0",
"mdast-util-gfm": "^3.1.0",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-markdown": "^2.1.2",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5"
}
}