-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.29 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
{
"name": "klaatai",
"version": "2.4.4",
"description": "KlaatAI \u2014 AI coding assistant CLI with smart model routing",
"license": "MIT",
"author": "KlaatAI <hello@klaatai.com>",
"homepage": "https://klaatai.com",
"repository": {
"type": "git",
"url": "git+https://github.com/KlaatAI/klaatcode.git"
},
"keywords": [
"ai",
"cli",
"coding-assistant",
"llm",
"terminal",
"opencode",
"claude"
],
"bin": {
"klaatai": "dist/klaatai.js"
},
"files": [
"dist/klaatai.js",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/main.tsx",
"build": "bun build src/main.tsx --target bun --outfile dist/klaatai.js --minify && node -e \"const f='dist/klaatai.js',fs=require('fs'),c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!/'))fs.writeFileSync(f,'#!/usr/bin/env bun\\n'+c);fs.chmodSync(f,0o755)\"",
"build:binary:mac-arm": "bun build src/main.tsx --compile --target bun-darwin-arm64 --outfile dist/binaries/klaatai-macos-arm64",
"build:binary:mac-x64": "bun build src/main.tsx --compile --target bun-darwin-x64 --outfile dist/binaries/klaatai-macos-x64",
"build:binary:linux": "bun build src/main.tsx --compile --target bun-linux-x64 --outfile dist/binaries/klaatai-linux-x64",
"build:binary:windows": "bun build src/main.tsx --compile --target bun-windows-x64 --outfile dist/binaries/klaatai-windows-x64.exe",
"build:binaries": "mkdir -p dist/binaries && bun run build:binary:mac-arm && bun run build:binary:mac-x64 && bun run build:binary:linux && bun run build:binary:windows",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"bench": "bun bench/run.ts",
"bench:selfcheck": "bun bench/selfcheck.ts",
"bench:claude": "bun bench/compare-claude.ts",
"sync:public": "bash scripts/sync-to-public.sh",
"sync:public:push": "bash scripts/sync-to-public.sh --push",
"pull:public": "bash scripts/pull-from-public.sh",
"release": "bun run build && bun run build:binaries"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"bugs": {
"url": "https://github.com/KlaatAI/klaatcode/issues"
}
}