-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "@yishus/dim-code",
"version": "0.1.0",
"description": "A terminal UI AI coding assistant",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"bin": {
"dim": "src/cli.tsx"
},
"scripts": {
"build": "rm -rf dist && bun build src/index.ts --outfile dist/index.js && bunx tsc --project tsconfig.build.json",
"dev": "bun run --watch src/cli.tsx",
"start": "bun run src/cli.tsx",
"typecheck": "tsc --noEmit",
"test": "bun test tests",
"logs:build": "cd web && bun install && bunx @tailwindcss/cli -i src/styles.css -o dist/styles.css && bun build src/cli.tsx --outdir dist",
"logs": "bun run web/server.ts"
},
"keywords": [
"ai",
"tui",
"coding-assistant",
"terminal",
"cli"
],
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.7",
"@types/turndown": "^5.0.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@google/genai": "^1.38.0",
"@opentui/core": "^0.1.75",
"@opentui/react": "^0.1.75",
"openai": "^6.17.0",
"react": "^19.1.1",
"turndown": "^7.2.2",
"typebox": "^1.0.76"
}
}