@xyd-js/cli 0.1.0-xyd.5 → 0.1.0-xyd.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/app/root.tsx +23 -0
- package/.cli/app/routes.ts +5 -0
- package/.cli/bin.js +3 -0
- package/.cli/index.js +5673 -0
- package/.cli/package-lock.json +7855 -0
- package/.cli/package.json +37 -0
- package/.cli/plugins/xyd-plugin-zero/src/pages/api-reference.tsx +406 -0
- package/.cli/plugins/xyd-plugin-zero/src/pages/docs.tsx +166 -0
- package/.cli/plugins/xyd-plugin-zero/src/pages/root.tsx +37 -0
- package/.cli/postcss.config.cjs +5 -0
- package/.cli/react-router.config.ts +8 -0
- package/.cli/tsconfig.json +22 -0
- package/.cli/vite.config.ts +9 -0
- package/package.json +33 -32
package/package.json
CHANGED
|
@@ -1,67 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyd-js/cli",
|
|
3
|
-
"version": "0.1.0-xyd.
|
|
3
|
+
"version": "0.1.0-xyd.7",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": "",
|
|
6
6
|
"description": "",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"main": ".cli/index.js",
|
|
9
8
|
"files": [
|
|
10
9
|
".cli",
|
|
11
10
|
".cli/package.json"
|
|
12
11
|
],
|
|
13
12
|
"scripts": {
|
|
14
|
-
"build": "tsup"
|
|
13
|
+
"build": "tsup",
|
|
14
|
+
"postinstall": "cd .cli && npm install"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
+
"@graphql-markdown/core": "^1.12.0",
|
|
18
|
+
"@graphql-markdown/graphql": "^1.1.4",
|
|
19
|
+
"@graphql-markdown/types": "^1.4.0",
|
|
20
|
+
"@react-router/dev": "^7.1.1",
|
|
21
|
+
"@react-router/node": "^7.1.1",
|
|
22
|
+
"@react-router/serve": "^7.1.1",
|
|
23
|
+
"@readme/oas-to-snippet": "^26.0.1",
|
|
24
|
+
"@xyd-js/documan-host": "file:.cli",
|
|
17
25
|
"@xyd-js/react-router-dev": "7.1.1-xyd.3",
|
|
18
26
|
"arg": "^5.0.2",
|
|
19
|
-
"colors": "^1.4.0",
|
|
20
|
-
"semver": "^7.6.3",
|
|
21
27
|
"codehike": "^1.0.3",
|
|
28
|
+
"colors": "^1.4.0",
|
|
29
|
+
"compression": "^1.7.5",
|
|
22
30
|
"express": "^4.21.1",
|
|
31
|
+
"get-port": "^7.1.0",
|
|
32
|
+
"graphql-config": "^5.1.2",
|
|
33
|
+
"gray-matter": "^4.0.3",
|
|
23
34
|
"isbot": "^5.1.17",
|
|
35
|
+
"js-yaml": "^4.1.0",
|
|
36
|
+
"json-schema-ref-parser": "^9.0.9",
|
|
37
|
+
"json-to-graphql-query": "^2.3.0",
|
|
38
|
+
"lightningcss": "^1.27.0",
|
|
39
|
+
"morgan": "^1.10.0",
|
|
40
|
+
"oas": "^25.0.3",
|
|
41
|
+
"openapi-sampler": "^1.5.1",
|
|
42
|
+
"openapi-types": "^12.1.3",
|
|
24
43
|
"react": "^18.3.1",
|
|
25
44
|
"react-dom": "^18.3.1",
|
|
26
45
|
"react-router": "^7.1.1",
|
|
46
|
+
"remark": "^15.0.1",
|
|
27
47
|
"remark-frontmatter": "^5.0.0",
|
|
28
48
|
"remark-gfm": "^4.0.0",
|
|
29
49
|
"remark-mdx-frontmatter": "^5.0.0",
|
|
30
|
-
"typescript": "^5.6.3",
|
|
31
|
-
"vfile": "^6.0.3",
|
|
32
|
-
"yaml": "^2.6.0",
|
|
33
|
-
"@graphql-markdown/core": "^1.12.0",
|
|
34
|
-
"@graphql-markdown/graphql": "^1.1.4",
|
|
35
|
-
"@graphql-markdown/types": "^1.4.0",
|
|
36
|
-
"graphql-config": "^5.1.2",
|
|
37
|
-
"gray-matter": "^4.0.3",
|
|
38
|
-
"json-to-graphql-query": "^2.3.0",
|
|
39
|
-
"remark": "^15.0.1",
|
|
40
50
|
"remark-stringify": "^11.0.0",
|
|
51
|
+
"semver": "^7.6.3",
|
|
52
|
+
"source-map-support": "^0.5.21",
|
|
53
|
+
"typescript": "^5.6.3",
|
|
41
54
|
"unist-builder": "^4.0.0",
|
|
42
55
|
"unist-util-visit": "^5.0.0",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"oas": "^25.0.3",
|
|
47
|
-
"openapi-sampler": "^1.5.1",
|
|
48
|
-
"openapi-types": "^12.1.3",
|
|
49
|
-
"@react-router/node": "^7.1.1",
|
|
50
|
-
"@react-router/serve": "^7.1.1",
|
|
51
|
-
"@react-router/dev": "^7.1.1",
|
|
52
|
-
"compression": "^1.7.5",
|
|
53
|
-
"get-port": "^7.1.0",
|
|
54
|
-
"lightningcss": "^1.27.0",
|
|
55
|
-
"morgan": "^1.10.0",
|
|
56
|
-
"source-map-support": "^0.5.21",
|
|
57
|
-
"vite-tsconfig-paths": "^5.1.4"
|
|
56
|
+
"vfile": "^6.0.3",
|
|
57
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
58
|
+
"yaml": "^2.6.0"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
61
|
"@xyd-js/documan": "0.1.0-xyd.15",
|
|
61
|
-
"tsup": "^8.3.0",
|
|
62
62
|
"arg": "^5.0.2",
|
|
63
63
|
"colors": "^1.4.0",
|
|
64
64
|
"semver": "^7.6.3",
|
|
65
|
+
"tsup": "^8.3.0",
|
|
65
66
|
"vite-tsconfig-paths": "^5.1.4"
|
|
66
67
|
}
|
|
67
|
-
}
|
|
68
|
+
}
|