-
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.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 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": "hypershell",
"private": true,
"version": "0.1.9",
"packageManager": "pnpm@10.8.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "pnpm -r --if-present build",
"test": "vitest run",
"lint": "pnpm -r --if-present lint",
"ci:build": "pnpm build",
"ci:test": "pnpm test",
"ci:test:e2e": "pnpm --filter @hypershell/ui run test:e2e",
"release:windows:unsigned": "pnpm --filter @hypershell/desktop run package:win:unsigned",
"release:windows:signed": "pnpm --filter @hypershell/desktop run package:win:signed",
"release:mac:unsigned": "pnpm --filter @hypershell/desktop run package:mac:unsigned",
"release:linux:unsigned": "pnpm --filter @hypershell/desktop run package:linux:unsigned",
"release:manifest": "pnpm --filter @hypershell/desktop run release:manifest",
"release:prepare": "node .tools/release/prepare-version-and-changelog.mjs",
"rebuild:sqlite": "pnpm rebuild better-sqlite3",
"rebuild:sqlite:electron": "pnpm --filter @hypershell/desktop run rebuild:native"
},
"pnpm": {
"onlyBuiltDependencies": [
"@serialport/bindings-cpp",
"better-sqlite3",
"cpu-features",
"electron",
"electron-winstaller",
"esbuild",
"node-pty",
"ssh2"
],
"overrides": {
"postcss": "^8.5.10"
}
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}