-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.31 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.31 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
{
"name": "rakitkode",
"version": "0.2.0",
"description": "AI Developer OS — TUI-based coding agent built with Bun + TypeScript",
"type": "module",
"bin": {
"rakitkode": "./bin/rakitkode.ts",
"skills": "./src/bin/skills.ts"
},
"scripts": {
"dev": "bun run bin/rakitkode.tsx",
"build": "bun build bin/rakitkode.tsx --outdir dist --target bun --external react-devtools-core",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"test": "bun test",
"profile:init": "bun run scripts/bootstrap.ts",
"profile:auto": "bun run scripts/bootstrap.ts --auto",
"profile:ollama": "bun run scripts/bootstrap.ts --provider ollama",
"profile:openai": "bun run scripts/bootstrap.ts --provider openai",
"profile:deepseek": "bun run scripts/bootstrap.ts --provider deepseek",
"doctor": "bun run scripts/doctor.ts",
"doctor:json": "bun run scripts/doctor.ts --json",
"skills": "bun run src/bin/skills.ts",
"smoke": "bun run build && echo 'Build OK'",
"check": "bun run typecheck && bun run smoke && bun run doctor"
},
"dependencies": {
"ink": "^5.1.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.0",
"@types/react": "^18.3.18",
"typescript": "^5.7.0"
}
}