-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.63 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.63 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "aish",
"version": "0.1.2",
"description": "AI Shell - Your AI-powered command line assistant",
"module": "src/index.ts",
"type": "module",
"bin": {
"aish": "src/index.ts"
},
"scripts": {
"commit": "cz",
"build": "VERSION=$(node -p \"require('./package.json').version\") && bun build --compile --minify --sourcemap --define AISH_VERSION=\"\\\"$VERSION\\\"\" src/index.ts --outfile aish",
"build:all": "npm run build:linux && npm run build:macos && npm run build:windows",
"build:linux": "bun build --compile --minify --target=bun-linux-x64 --define AISH_VERSION='\"$npm_package_version\"' src/index.ts --outfile dist/aish-linux-x64",
"build:macos": "bun build --compile --minify --target=bun-darwin-arm64 --define AISH_VERSION='\"$npm_package_version\"' src/index.ts --outfile dist/aish-darwin-arm64",
"build:windows": "bun build --compile --minify --target=bun-windows-x64 --define AISH_VERSION='\"$npm_package_version\"' src/index.ts --outfile dist/aish-windows-x64.exe",
"dev": "AISH_VERSION=$npm_package_version bun run src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"update-all-dependencies": "bunx taze major -r -w",
"release": "bun run build:all",
"prepare": "husky"
},
"files": [
"src/**/*",
"dist/**/*",
"README.md"
],
"keywords": [
"ai",
"cli",
"assistant",
"shell",
"command-line",
"anthropic",
"openai",
"groq",
"google",
"mistral",
"xai",
"aish",
"ai-sdk",
"ai-shell",
"bun"
],
"author": "Abhishek Bhardwaj <abhishek@instantlycreative.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/abhishekbhardwaj/aish-cli.git"
},
"bugs": {
"url": "https://github.com/abhishekbhardwaj/aish-cli/issues"
},
"homepage": "https://github.com/abhishekbhardwaj/aish-cli#readme",
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "latest",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"devmoji": "^2.3.0",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.17",
"@ai-sdk/google": "^2.0.14",
"@ai-sdk/groq": "^2.0.20",
"@ai-sdk/mistral": "^2.0.14",
"@ai-sdk/openai": "^2.0.32",
"@ai-sdk/xai": "^2.0.20",
"@inquirer/prompts": "^7.8.6",
"@openrouter/ai-sdk-provider": "^1.2.0",
"ai": "^5.0.47",
"ai-json-fixer": "^0.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"zod": "^4.1.9"
}
}