-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@austinthesing/magic-shell",
"version": "1.0.1",
"description": "Natural language to terminal commands with safety features. Supports OpenCode Zen, OpenRouter, AI gateways, Workers AI, and custom models.",
"type": "module",
"main": "dist/index.js",
"bin": {
"msh": "dist/index.js",
"mshell": "dist/tui.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/index.ts",
"dev:tui": "bun run src/cli.ts",
"build": "bun build src/index.ts src/cli.ts src/tui.ts --outdir dist --target node --external '@opentui/core-*'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"cli",
"terminal",
"natural-language",
"shell",
"ai",
"openrouter",
"opencode",
"zen",
"command-line",
"nlp",
"gpt",
"claude",
"llm"
],
"author": "Austin Thesing (https://github.com/austin-thesing)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/austin-thesing/magic-shell.git"
},
"homepage": "https://github.com/austin-thesing/magic-shell#readme",
"bugs": {
"url": "https://github.com/austin-thesing/magic-shell/issues"
},
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3.14"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.85",
"@ai-sdk/google": "^3.0.83",
"@ai-sdk/openai": "^3.0.72",
"@ai-sdk/openai-compatible": "^2.0.51",
"@opentui/core": "^0.4.1",
"ai": "^6.0.207"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
}
}