-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.91 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
{
"name": "etherpad-apps",
"private": true,
"version": "0.0.0",
"description": "Etherpad apps (desktop, mobile) — monorepo root.",
"license": "Apache-2.0",
"author": "Etherpad Foundation",
"homepage": "https://etherpad.org/",
"repository": "github:ether/etherpad-desktop",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22"
},
"pnpm": {
"//": "pnpm 9+ blocks postinstall scripts by default. Without these on the allowlist, electron's binary download postinstall is skipped and tests fail with 'Electron failed to install correctly'.",
"onlyBuiltDependencies": [
"electron",
"electron-winstaller",
"esbuild"
]
},
"scripts": {
"dev": "pnpm --filter @etherpad/desktop dev",
"build": "pnpm --filter @etherpad/desktop build",
"typecheck": "pnpm -r --workspace-concurrency=1 typecheck",
"lint": "pnpm -r --workspace-concurrency=1 lint",
"format": "pnpm --filter @etherpad/desktop format",
"test": "pnpm -r --workspace-concurrency=1 test",
"test:vectors": "pnpm --filter @etherpad/shell exec vitest run tests/wire/vectors.spec.ts",
"test:smoke": "pnpm --filter @etherpad/shell exec vitest run tests/wire/smoke.spec.ts",
"test:watch": "pnpm --filter @etherpad/desktop test:watch",
"test:e2e": "pnpm --filter @etherpad/desktop test:e2e",
"mobile:dev": "pnpm --filter @etherpad/mobile dev",
"mobile:build": "pnpm --filter @etherpad/mobile build",
"mobile:test": "pnpm --filter @etherpad/mobile test",
"mobile:android:run": "pnpm --filter @etherpad/mobile android:run",
"package": "pnpm --filter @etherpad/desktop package",
"package:win": "pnpm --filter @etherpad/desktop package:win",
"package:linux": "pnpm --filter @etherpad/desktop package:linux",
"package:mac": "pnpm --filter @etherpad/desktop package:mac",
"start": "pnpm --filter @etherpad/desktop start",
"white-label": "node scripts/white-label.mjs"
}
}