@austinthesing/magic-shell 0.2.20 → 0.2.22
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 +54 -27
- package/dist/cli.js +13810 -13707
- package/dist/index.js +4698 -1360
- package/dist/tui.js +13810 -13707
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@austinthesing/magic-shell",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Natural language to terminal commands with safety features. Supports OpenCode Zen
|
|
3
|
+
"version": "0.2.22",
|
|
4
|
+
"description": "Natural language to terminal commands with safety features. Supports OpenCode Zen, OpenRouter, AI gateways, Workers AI, and custom models.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"scripts": {
|
|
17
17
|
"dev": "bun run src/index.ts",
|
|
18
18
|
"dev:tui": "bun run src/cli.ts",
|
|
19
|
-
"build": "bun build src/index.ts src/cli.ts src/tui.ts --outdir dist --target node",
|
|
19
|
+
"build": "bun build src/index.ts src/cli.ts src/tui.ts --outdir dist --target node --external '@opentui/core-*'",
|
|
20
20
|
"typecheck": "tsc --noEmit",
|
|
21
21
|
"prepublishOnly": "bun run build"
|
|
22
22
|
},
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
"bugs": {
|
|
46
46
|
"url": "https://github.com/austin-thesing/magic-shell/issues"
|
|
47
47
|
},
|
|
48
|
-
"packageManager": "bun@1.3.
|
|
48
|
+
"packageManager": "bun@1.3.14",
|
|
49
49
|
"engines": {
|
|
50
|
-
"bun": ">=1.3.
|
|
50
|
+
"bun": ">=1.3.14"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@ai-sdk/anthropic": "3.0.
|
|
54
|
-
"@ai-sdk/google": "3.0.
|
|
55
|
-
"@ai-sdk/openai": "3.0.
|
|
56
|
-
"@ai-sdk/openai-compatible": "2.0.
|
|
57
|
-
"@opentui/core": "0.
|
|
58
|
-
"ai": "6.0.
|
|
53
|
+
"@ai-sdk/anthropic": "^3.0.85",
|
|
54
|
+
"@ai-sdk/google": "^3.0.83",
|
|
55
|
+
"@ai-sdk/openai": "^3.0.72",
|
|
56
|
+
"@ai-sdk/openai-compatible": "^2.0.51",
|
|
57
|
+
"@opentui/core": "^0.4.1",
|
|
58
|
+
"ai": "^6.0.207"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@types/bun": "1.3.
|
|
62
|
-
"typescript": "6.0.3"
|
|
61
|
+
"@types/bun": "^1.3.14",
|
|
62
|
+
"typescript": "^6.0.3"
|
|
63
63
|
}
|
|
64
64
|
}
|