@iruidong/code 0.1.0
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/QUICKSTART.md +119 -0
- package/README.md +127 -0
- package/dist/cli.js +341020 -0
- package/package.json +128 -0
package/package.json
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iruidong/code",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Ruidong Code CLI for anthropic-compatible coding workflows",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"bin": {
|
|
8
|
+
"ruidong": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/cli.js",
|
|
12
|
+
"README.md",
|
|
13
|
+
"QUICKSTART.md"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"cli",
|
|
17
|
+
"agent",
|
|
18
|
+
"coding",
|
|
19
|
+
"mcp",
|
|
20
|
+
"anthropic-compatible",
|
|
21
|
+
"developer-tools"
|
|
22
|
+
],
|
|
23
|
+
"license": "UNLICENSED",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/Jackwwg83/RuidongCode.git"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/Jackwwg83/RuidongCode#readme",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/Jackwwg83/RuidongCode/issues"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"preferGlobal": true,
|
|
36
|
+
"scripts": {
|
|
37
|
+
"prepare-src": "node scripts/prepare-src.mjs",
|
|
38
|
+
"build": "npm run prepare-src && node scripts/build.mjs",
|
|
39
|
+
"check": "npm run prepare-src && tsc --noEmit",
|
|
40
|
+
"start": "node dist/cli.js",
|
|
41
|
+
"verify:p0": "bash scripts/p0-regression.sh",
|
|
42
|
+
"prepublishOnly": "npm run verify:p0"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=18.0.0"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@anthropic-ai/bedrock-sdk": "^0.26.4",
|
|
49
|
+
"@anthropic-ai/foundry-sdk": "^0.2.3",
|
|
50
|
+
"@anthropic-ai/sdk": "^0.80.0",
|
|
51
|
+
"@anthropic-ai/vertex-sdk": "^0.14.4",
|
|
52
|
+
"@aws-sdk/client-bedrock": "^3.1020.0",
|
|
53
|
+
"@aws-sdk/client-bedrock-runtime": "^3.1020.0",
|
|
54
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
55
|
+
"@aws-sdk/credential-providers": "^3.1020.0",
|
|
56
|
+
"@azure/identity": "^4.13.1",
|
|
57
|
+
"@commander-js/extra-typings": "^14.0.0",
|
|
58
|
+
"@growthbook/growthbook": "^1.6.5",
|
|
59
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
60
|
+
"@opentelemetry/api": "^1.9.1",
|
|
61
|
+
"@opentelemetry/api-logs": "^0.214.0",
|
|
62
|
+
"@opentelemetry/core": "^2.6.1",
|
|
63
|
+
"@opentelemetry/resources": "^2.6.1",
|
|
64
|
+
"@opentelemetry/sdk-logs": "^0.214.0",
|
|
65
|
+
"@opentelemetry/sdk-metrics": "^2.6.1",
|
|
66
|
+
"@opentelemetry/sdk-trace-base": "^2.6.1",
|
|
67
|
+
"@opentelemetry/semantic-conventions": "^1.40.0",
|
|
68
|
+
"@smithy/core": "^3.23.13",
|
|
69
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
70
|
+
"ajv": "^8.18.0",
|
|
71
|
+
"asciichart": "^1.5.25",
|
|
72
|
+
"auto-bind": "^5.0.1",
|
|
73
|
+
"axios": "^1.14.0",
|
|
74
|
+
"bidi-js": "^1.0.3",
|
|
75
|
+
"cacache": "^20.0.4",
|
|
76
|
+
"chalk": "^5.6.2",
|
|
77
|
+
"chokidar": "^5.0.0",
|
|
78
|
+
"cli-boxes": "^4.0.1",
|
|
79
|
+
"cli-highlight": "^2.1.11",
|
|
80
|
+
"code-excerpt": "^4.0.0",
|
|
81
|
+
"diff": "^8.0.4",
|
|
82
|
+
"emoji-regex": "^10.6.0",
|
|
83
|
+
"env-paths": "^4.0.0",
|
|
84
|
+
"execa": "^9.6.1",
|
|
85
|
+
"fflate": "^0.8.2",
|
|
86
|
+
"figures": "^6.1.0",
|
|
87
|
+
"fuse.js": "^7.1.0",
|
|
88
|
+
"get-east-asian-width": "^1.5.0",
|
|
89
|
+
"google-auth-library": "^10.6.2",
|
|
90
|
+
"highlight.js": "^11.11.1",
|
|
91
|
+
"https-proxy-agent": "^8.0.0",
|
|
92
|
+
"ignore": "^7.0.5",
|
|
93
|
+
"ink": "^6.8.0",
|
|
94
|
+
"jsonc-parser": "^3.3.1",
|
|
95
|
+
"lodash-es": "^4.17.23",
|
|
96
|
+
"lru-cache": "^11.2.7",
|
|
97
|
+
"marked": "^17.0.5",
|
|
98
|
+
"p-map": "^7.0.4",
|
|
99
|
+
"picomatch": "^4.0.4",
|
|
100
|
+
"plist": "^3.1.0",
|
|
101
|
+
"proper-lockfile": "^4.1.2",
|
|
102
|
+
"qrcode": "^1.5.4",
|
|
103
|
+
"react": "^19.2.4",
|
|
104
|
+
"react-reconciler": "^0.33.0",
|
|
105
|
+
"semver": "^7.7.4",
|
|
106
|
+
"shell-quote": "^1.8.3",
|
|
107
|
+
"signal-exit": "^4.1.0",
|
|
108
|
+
"stack-utils": "^2.0.6",
|
|
109
|
+
"strip-ansi": "^7.2.0",
|
|
110
|
+
"supports-hyperlinks": "^4.4.0",
|
|
111
|
+
"tree-kill": "^1.2.2",
|
|
112
|
+
"turndown": "^7.2.2",
|
|
113
|
+
"undici": "^7.24.6",
|
|
114
|
+
"usehooks-ts": "^3.1.1",
|
|
115
|
+
"vscode-jsonrpc": "^8.2.1",
|
|
116
|
+
"vscode-languageserver-protocol": "^3.17.5",
|
|
117
|
+
"vscode-languageserver-types": "^3.17.5",
|
|
118
|
+
"wrap-ansi": "^10.0.0",
|
|
119
|
+
"ws": "^8.20.0",
|
|
120
|
+
"xss": "^1.0.15",
|
|
121
|
+
"yaml": "^2.8.3",
|
|
122
|
+
"zod": "^4.3.6"
|
|
123
|
+
},
|
|
124
|
+
"devDependencies": {
|
|
125
|
+
"esbuild": "^0.27.4",
|
|
126
|
+
"typescript": "^6.0.2"
|
|
127
|
+
}
|
|
128
|
+
}
|