-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.17 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
{
"name": "tday",
"version": "0.10.13",
"private": true,
"description": "The Ultimate Harness Agent Launcher",
"author": "unbug",
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "pnpm --filter @tday/desktop dev",
"build": "pnpm --filter @tday/desktop build",
"package": "pnpm --filter @tday/desktop build && pnpm --filter @tday/desktop package:mac",
"package:mac": "pnpm --filter @tday/desktop build && pnpm --filter @tday/desktop package:mac",
"package:win": "pnpm --filter @tday/desktop build && pnpm --filter @tday/desktop package:win",
"package:linux": "pnpm --filter @tday/desktop build && pnpm --filter @tday/desktop package:linux",
"release": "node scripts/release.mjs",
"build:core": "cd crates/tday-core && cargo build --release",
"typecheck": "pnpm -r --parallel typecheck",
"lint": "pnpm -r --parallel lint"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"node-pty"
]
},
"devDependencies": {
"eslint": "^10.3.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"typescript-eslint": "^8.59.1"
}
}