-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.01 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
{
"name": "linka",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"dev": "./scripts/dev-stack.sh",
"smoke:ui": "node scripts/ui-smoke.mjs",
"format": "prettier --check .prettierrc .eslintrc.cjs CLAUDE.md package.json pnpm-workspace.yaml turbo.json tsconfig.*.json packages/**/*.{json,ts,tsx} docs/plans/**/*.md scripts/**/*.mjs",
"smoke:opencode-room": "node scripts/opencode-room-smoke.mjs",
"smoke:opencode-loop": "node scripts/opencode-loop-smoke.mjs",
"smoke:daemon-ui": "node scripts/daemon-ui-e2e.mjs"
},
"devDependencies": {
"@types/node": "^20.17.16",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vite": "^5.4.11"
}
}