-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "die",
"version": "0.3.0",
"private": true,
"type": "module",
"bin": {
"die": "dist/die"
},
"scripts": {
"prepare:assets": "bun ./scripts/prepare-assets.ts",
"build": "bun run prepare:assets && bun ./scripts/build.ts",
"check": "bun run prepare:assets && tsc --noEmit",
"test": "bun run build && bun test ./tests",
"test:llm": "bun run build && DIE_RUN_LLM_TESTS=1 bun test ./tests/llm.test.ts",
"install:local": "./scripts/install-local.sh",
"smoke": "./scripts/smoke.sh",
"tui": "bun ./scripts/tui-harness.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"generate:notices": "bun ./scripts/generate-third-party-notices.ts",
"prompt:preview": "bun ./scripts/prompt-preview.ts",
"build:web": "bun ./scripts/build-web.ts"
},
"dependencies": {
"@earendil-works/pi-ai": "0.85.0",
"@earendil-works/pi-coding-agent": "0.85.0",
"@earendil-works/pi-server": "0.85.0",
"@earendil-works/pi-tui": "0.85.0",
"es-module-lexer": "^2.3.2",
"resolve.exports": "2.0.3",
"zod": "4.5.4"
},
"devDependencies": {
"@biomejs/biome": "2.5.12",
"@types/bun": "1.4.1",
"typescript": "7.0.2"
},
"engines": {
"bun": ">=1.4.1"
},
"license": "MIT"
}