my-open-cc 1.0.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/README.md +82 -0
- package/dist/cli.mjs +10638 -0
- package/package.json +163 -0
- package/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/vendor/ripgrep/arm64-linux/rg +0 -0
- package/vendor/ripgrep/x64-darwin/rg +0 -0
- package/vendor/ripgrep/x64-linux/rg +0 -0
- package/vendor/ripgrep/x64-win32/rg.exe +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "my-open-cc",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"packageManager": "npm@10.0.0",
|
|
6
|
+
"bin": {
|
|
7
|
+
"oc": "dist/cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"vendor/ripgrep",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"description": "my-open-cc — an open-source AI coding assistant",
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18.0.0"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "node build.mjs",
|
|
21
|
+
"build:dev": "node build.mjs --dev",
|
|
22
|
+
"build:dev:full": "node build.mjs --dev",
|
|
23
|
+
"download:ripgrep": "node scripts/download-ripgrep.mjs",
|
|
24
|
+
"prepublishOnly": "npm run download:ripgrep && npm run build",
|
|
25
|
+
"dev": "tsx ./src/entrypoints/cli.tsx",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"postinstall": "node scripts/setup-ant-shims.mjs"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@alcalzone/ansi-tokenize": "^0.1.0",
|
|
31
|
+
"@anthropic-ai/bedrock-sdk": "^0.26.4",
|
|
32
|
+
"@anthropic-ai/foundry-sdk": "^0.2.3",
|
|
33
|
+
"@anthropic-ai/mcpb": "^2.1.2",
|
|
34
|
+
"@anthropic-ai/sandbox-runtime": "^0.0.45",
|
|
35
|
+
"@anthropic-ai/sdk": "0.80.0",
|
|
36
|
+
"@anthropic-ai/vertex-sdk": "^0.14.4",
|
|
37
|
+
"@aws-sdk/client-bedrock": "^3.1020.0",
|
|
38
|
+
"@aws-sdk/client-bedrock-runtime": "^3.700.0",
|
|
39
|
+
"@aws-sdk/client-sts": "^3.1020.0",
|
|
40
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
41
|
+
"@aws-sdk/credential-providers": "^3.1020.0",
|
|
42
|
+
"@azure/identity": "^4.13.1",
|
|
43
|
+
"@commander-js/extra-typings": "^13.1.0",
|
|
44
|
+
"@growthbook/growthbook": "^1.3.0",
|
|
45
|
+
"@grpc/grpc-js": "^1.12.0",
|
|
46
|
+
"@grpc/proto-loader": "^0.7.0",
|
|
47
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
48
|
+
"@opentelemetry/api": "^1.9.0",
|
|
49
|
+
"@opentelemetry/api-logs": "^0.57.0",
|
|
50
|
+
"@opentelemetry/core": "^2.6.1",
|
|
51
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "^0.214.0",
|
|
52
|
+
"@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
|
|
53
|
+
"@opentelemetry/exporter-logs-otlp-proto": "^0.214.0",
|
|
54
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.214.0",
|
|
55
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.214.0",
|
|
56
|
+
"@opentelemetry/exporter-metrics-otlp-proto": "^0.214.0",
|
|
57
|
+
"@opentelemetry/exporter-prometheus": "^0.214.0",
|
|
58
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "^0.214.0",
|
|
59
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
|
|
60
|
+
"@opentelemetry/exporter-trace-otlp-proto": "^0.214.0",
|
|
61
|
+
"@opentelemetry/resources": "^2.6.1",
|
|
62
|
+
"@opentelemetry/sdk-logs": "^0.57.0",
|
|
63
|
+
"@opentelemetry/sdk-metrics": "^2.6.1",
|
|
64
|
+
"@opentelemetry/sdk-trace-base": "^2.6.1",
|
|
65
|
+
"@opentelemetry/semantic-conventions": "^1.28.0",
|
|
66
|
+
"@playwright/mcp": "^0.0.69",
|
|
67
|
+
"ajv": "^8.17.0",
|
|
68
|
+
"asciichart": "^1.5.0",
|
|
69
|
+
"audio-capture-napi": "^0.0.1",
|
|
70
|
+
"auto-bind": "^5.0.1",
|
|
71
|
+
"axios": "^1.7.0",
|
|
72
|
+
"bidi-js": "^1.0.0",
|
|
73
|
+
"cacache": "^20.0.4",
|
|
74
|
+
"chalk": "^5.4.0",
|
|
75
|
+
"chokidar": "^4.0.0",
|
|
76
|
+
"chrome-devtools-mcp": "^0.20.3",
|
|
77
|
+
"cli-boxes": "^3.0.0",
|
|
78
|
+
"cli-highlight": "^2.1.0",
|
|
79
|
+
"code-excerpt": "^4.0.0",
|
|
80
|
+
"commander": "^13.1.0",
|
|
81
|
+
"computer-use-mcp": "^1.7.1",
|
|
82
|
+
"diff": "^7.0.0",
|
|
83
|
+
"emoji-regex": "^10.4.0",
|
|
84
|
+
"env-paths": "^3.0.0",
|
|
85
|
+
"execa": "^9.5.0",
|
|
86
|
+
"fflate": "^0.8.2",
|
|
87
|
+
"figures": "^6.1.0",
|
|
88
|
+
"fuse.js": "^7.0.0",
|
|
89
|
+
"get-east-asian-width": "^1.3.0",
|
|
90
|
+
"google-auth-library": "^9.15.0",
|
|
91
|
+
"highlight.js": "^11.11.0",
|
|
92
|
+
"https-proxy-agent": "^7.0.0",
|
|
93
|
+
"ignore": "^7.0.0",
|
|
94
|
+
"indent-string": "^5.0.0",
|
|
95
|
+
"ink": "^6.8.0",
|
|
96
|
+
"jsonc-parser": "^3.3.0",
|
|
97
|
+
"jsonwebtoken": "^9.0.0",
|
|
98
|
+
"lodash-es": "^4.17.0",
|
|
99
|
+
"lru-cache": "^11.0.0",
|
|
100
|
+
"marked": "^15.0.0",
|
|
101
|
+
"modifiers-napi": "^0.0.1",
|
|
102
|
+
"p-map": "^7.0.4",
|
|
103
|
+
"picomatch": "^4.0.4",
|
|
104
|
+
"plist": "^3.1.0",
|
|
105
|
+
"proper-lockfile": "^4.1.0",
|
|
106
|
+
"protobufjs": "^7.4.0",
|
|
107
|
+
"qrcode": "^1.5.0",
|
|
108
|
+
"react": "^19.0.0",
|
|
109
|
+
"react-reconciler": "^0.33.0",
|
|
110
|
+
"semver": "^7.6.0",
|
|
111
|
+
"sharp": "^0.34.2",
|
|
112
|
+
"shell-quote": "^1.8.0",
|
|
113
|
+
"signal-exit": "^4.1.0",
|
|
114
|
+
"stack-utils": "^2.0.0",
|
|
115
|
+
"strip-ansi": "^7.1.0",
|
|
116
|
+
"supports-hyperlinks": "^3.1.0",
|
|
117
|
+
"tree-kill": "^1.2.0",
|
|
118
|
+
"turndown": "^7.2.0",
|
|
119
|
+
"undici": "^7.3.0",
|
|
120
|
+
"usehooks-ts": "^3.1.0",
|
|
121
|
+
"uuid": "^11.0.0",
|
|
122
|
+
"vscode-jsonrpc": "^8.2.0",
|
|
123
|
+
"vscode-languageserver-protocol": "^3.17.0",
|
|
124
|
+
"vscode-languageserver-types": "^3.17.0",
|
|
125
|
+
"wrap-ansi": "^9.0.0",
|
|
126
|
+
"ws": "^8.18.0",
|
|
127
|
+
"xss": "^1.0.0",
|
|
128
|
+
"xxhash-wasm": "^1.1.0",
|
|
129
|
+
"yaml": "^2.7.0",
|
|
130
|
+
"zod": "^3.25.0",
|
|
131
|
+
"zod-to-json-schema": "^3.24.0"
|
|
132
|
+
},
|
|
133
|
+
"devDependencies": {
|
|
134
|
+
"@anthropic-ai/claude-agent-sdk": "^0.1.77",
|
|
135
|
+
"@types/bun": "^1.3.14",
|
|
136
|
+
"@types/diff": "^7.0.0",
|
|
137
|
+
"@types/lodash-es": "^4.17.0",
|
|
138
|
+
"@types/node": "^22.0.0",
|
|
139
|
+
"@types/proper-lockfile": "^4.1.0",
|
|
140
|
+
"@types/react": "^19.0.0",
|
|
141
|
+
"@types/react-reconciler": "^0.28.0",
|
|
142
|
+
"@types/semver": "^7.5.0",
|
|
143
|
+
"@types/shell-quote": "^1.7.0",
|
|
144
|
+
"@types/uuid": "^10.0.0",
|
|
145
|
+
"@types/ws": "^8.5.0",
|
|
146
|
+
"esbuild": "^0.25.0",
|
|
147
|
+
"tar": "^7.5.0",
|
|
148
|
+
"tsx": "^4.22.4",
|
|
149
|
+
"type-fest": "^5.5.0",
|
|
150
|
+
"typescript": "^5.7.0"
|
|
151
|
+
},
|
|
152
|
+
"optionalDependencies": {
|
|
153
|
+
"@img/sharp-darwin-arm64": "^0.34.2",
|
|
154
|
+
"@img/sharp-darwin-x64": "^0.34.2",
|
|
155
|
+
"@img/sharp-linux-arm": "^0.34.2",
|
|
156
|
+
"@img/sharp-linux-arm64": "^0.34.2",
|
|
157
|
+
"@img/sharp-linux-x64": "^0.34.2",
|
|
158
|
+
"@img/sharp-linuxmusl-arm64": "^0.34.2",
|
|
159
|
+
"@img/sharp-linuxmusl-x64": "^0.34.2",
|
|
160
|
+
"@img/sharp-win32-arm64": "^0.34.2",
|
|
161
|
+
"@img/sharp-win32-x64": "^0.34.2"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|