ulla-ai 2.1.88
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/dist/cli.js +365560 -0
- package/dist/index.js +364151 -0
- package/package.json +96 -0
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ulla-ai",
|
|
3
|
+
"version": "2.1.88",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"bin": {
|
|
6
|
+
"ulla": "./dist/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "node build.mjs"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@alcalzone/ansi-tokenize": "*",
|
|
20
|
+
"@anthropic-ai/claude-agent-sdk": "*",
|
|
21
|
+
"@anthropic-ai/sdk": "*",
|
|
22
|
+
"@aws-sdk/client-bedrock-runtime": "*",
|
|
23
|
+
"@commander-js/extra-typings": "*",
|
|
24
|
+
"@growthbook/growthbook": "*",
|
|
25
|
+
"@modelcontextprotocol/sdk": "*",
|
|
26
|
+
"@opentelemetry/api": "*",
|
|
27
|
+
"@opentelemetry/api-logs": "*",
|
|
28
|
+
"@opentelemetry/core": "*",
|
|
29
|
+
"@opentelemetry/resources": "*",
|
|
30
|
+
"@opentelemetry/sdk-logs": "*",
|
|
31
|
+
"@opentelemetry/sdk-metrics": "*",
|
|
32
|
+
"@opentelemetry/sdk-trace-base": "*",
|
|
33
|
+
"@opentelemetry/semantic-conventions": "*",
|
|
34
|
+
"ajv": "*",
|
|
35
|
+
"asciichart": "*",
|
|
36
|
+
"auto-bind": "*",
|
|
37
|
+
"axios": "*",
|
|
38
|
+
"bidi-js": "*",
|
|
39
|
+
"chalk": "*",
|
|
40
|
+
"chokidar": "*",
|
|
41
|
+
"cli-boxes": "*",
|
|
42
|
+
"code-excerpt": "*",
|
|
43
|
+
"color-diff-napi": "*",
|
|
44
|
+
"diff": "*",
|
|
45
|
+
"emoji-regex": "*",
|
|
46
|
+
"env-paths": "*",
|
|
47
|
+
"execa": "*",
|
|
48
|
+
"figures": "*",
|
|
49
|
+
"fuse.js": "*",
|
|
50
|
+
"get-east-asian-width": "*",
|
|
51
|
+
"google-auth-library": "*",
|
|
52
|
+
"highlight.js": "*",
|
|
53
|
+
"https-proxy-agent": "*",
|
|
54
|
+
"ignore": "*",
|
|
55
|
+
"indent-string": "*",
|
|
56
|
+
"ink": "*",
|
|
57
|
+
"jsonc-parser": "*",
|
|
58
|
+
"lodash-es": "*",
|
|
59
|
+
"lru-cache": "*",
|
|
60
|
+
"marked": "*",
|
|
61
|
+
"p-map": "*",
|
|
62
|
+
"picomatch": "*",
|
|
63
|
+
"proper-lockfile": "*",
|
|
64
|
+
"qrcode": "*",
|
|
65
|
+
"react": "*",
|
|
66
|
+
"react-reconciler": "*",
|
|
67
|
+
"semver": "*",
|
|
68
|
+
"shell-quote": "*",
|
|
69
|
+
"signal-exit": "*",
|
|
70
|
+
"stack-utils": "*",
|
|
71
|
+
"strip-ansi": "*",
|
|
72
|
+
"supports-hyperlinks": "*",
|
|
73
|
+
"tree-kill": "*",
|
|
74
|
+
"type-fest": "*",
|
|
75
|
+
"undici": "*",
|
|
76
|
+
"usehooks-ts": "*",
|
|
77
|
+
"vscode-jsonrpc": "*",
|
|
78
|
+
"vscode-languageserver-protocol": "*",
|
|
79
|
+
"vscode-languageserver-types": "*",
|
|
80
|
+
"wrap-ansi": "*",
|
|
81
|
+
"ws": "*",
|
|
82
|
+
"xss": "*",
|
|
83
|
+
"zod": "*"
|
|
84
|
+
},
|
|
85
|
+
"optionalDependencies": {
|
|
86
|
+
"@ant/claude-for-chrome-mcp": "*",
|
|
87
|
+
"@ant/computer-use-input": "*",
|
|
88
|
+
"@ant/computer-use-mcp": "*",
|
|
89
|
+
"@ant/computer-use-swift": "*",
|
|
90
|
+
"@anthropic-ai/mcpb": "*",
|
|
91
|
+
"@anthropic-ai/sandbox-runtime": "*"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"esbuild": "^0.25.0"
|
|
95
|
+
}
|
|
96
|
+
}
|