-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "pi-deck",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Friendly desktop and web client for the pi coding agent.",
"license": "MIT",
"engines": {
"node": ">=24"
},
"packageManager": "bun@1.3.13",
"workspaces": [
"packages/*"
],
"scripts": {
"check": "bun run lint && bun run format:check && bun run type-check",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"type-check": "tsc -p tsconfig.json --noEmit && tsc -p packages/desktop/tsconfig.main.json --noEmit",
"test": "bun test",
"desktop:dev": "bun run --filter @pi-deck/desktop dev",
"desktop:build": "bun run --filter @pi-deck/desktop build",
"dist": "bun run --filter @pi-deck/desktop dist",
"version": "bun scripts/version.ts",
"release-notes": "bun scripts/release-notes.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@tailwindcss/vite": "4.2.1",
"@types/bun": "1.3.5",
"@types/node": "24.1.0",
"@vitejs/plugin-react": "6.0.1",
"husky": "9.1.7",
"lint-staged": "17.0.2",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"vite": "8.0.10"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
}
}