-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
{
"name": "blitcoder",
"version": "1.0.0",
"description": "High-performance, developer-first AI coding assistant with TUI and GUI modes",
"module": "index.ts",
"type": "module",
"private": false,
"bin": {
"blitcoder": "./index.ts"
},
"scripts": {
"start": "bun run index.ts",
"start:gui": "bun run index.ts --gui",
"ascii": "bun run index.ts --ascii",
"build:gui": "cd gui && bun run build",
"typecheck": "bun x tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/ThatRealDylan/blited.git"
},
"bugs": {
"url": "https://github.com/ThatRealDylan/blited/issues"
},
"homepage": "https://github.com/ThatRealDylan/blited#readme",
"keywords": [
"ai",
"coding",
"assistant",
"cli",
"tui",
"ollama",
"deepseek",
"plugin"
],
"license": "CC0-1.0",
"devDependencies": {
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/react": "^19.2.14",
"@types/uuid": "^11.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@heyputer/puter.js": "^2.2.15",
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"electron": "^42.0.0",
"fs-extra": "^11.3.4",
"ink": "^7.0.1",
"ink-select-input": "^6.2.0",
"open": "^11.0.0",
"openai": "^6.34.0",
"react": "^19.2.5",
"react-devtools-core": "^7.0.1",
"uuid": "^14.0.0",
"zod": "^4.3.6"
}
}