-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 893 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 893 Bytes
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
{
"name": "killnode",
"version": "1.0.0",
"private": true,
"description": "KillNode — website, desktop privacy tooling, and documentation monorepo",
"author": "Alaustrup",
"license": "MIT",
"engines": {
"node": ">=20.9.0"
},
"packageManager": "npm@10.9.0",
"workspaces": [
"website",
"desktop"
],
"scripts": {
"dev:web": "npm run dev --workspace=website",
"build:web": "npm run build --workspace=website",
"start:web": "npm run start --workspace=website",
"lint:web": "npm run lint --workspace=website",
"dev:desktop": "npm run dev --workspace=desktop",
"build:desktop": "npm run build --workspace=desktop",
"package:desktop": "npm run package --workspace=desktop",
"build:all": "npm run build:web && npm run build:desktop",
"typecheck:desktop": "npm run typecheck --workspace=desktop"
}
}