-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.77 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "zerolink",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Zero-knowledge secret sharing with E2EE",
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"test": "pnpm -r test && pnpm test:root",
"test:root": "vitest run -c vitest.config.ts",
"test:e2e": "pnpm --filter @zerolink/frontend test:e2e",
"test:e2e:mock": "pnpm --filter @zerolink/frontend test:e2e:ui-smoke",
"test:e2e:realtime": "pnpm --filter @zerolink/frontend test:e2e:realtime",
"test:e2e:verification": "pnpm --filter @zerolink/frontend test:e2e:release-verification",
"test:protocol": "pnpm test:protocol:worker && pnpm test:protocol:selfhost",
"test:protocol:worker": "pnpm --filter @zerolink/backend test -- --run src/__tests__/worker-protocol-regression.test.ts",
"test:protocol:selfhost": "node -e \"if (!process.env.SELFHOST_API_TEST_DATABASE_URL) { console.error('SELFHOST_API_TEST_DATABASE_URL is required for pnpm test:protocol:selfhost'); process.exit(1); }\" && cd services/selfhost-api && go test -count=1 ./internal/service -run TestProtocolServiceProtocolRegressionSuite",
"test:coverage": "pnpm -r test -- --coverage",
"typecheck": "pnpm -r typecheck && pnpm typecheck:root",
"typecheck:root": "tsc --noEmit -p tsconfig.scripts.json",
"lint": "biome check package.json biome.json commitlint.config.js pnpm-workspace.yaml packages docs scripts .husky",
"lint:fix": "biome check --write package.json biome.json commitlint.config.js pnpm-workspace.yaml packages docs scripts .husky",
"format": "biome format --write package.json biome.json commitlint.config.js pnpm-workspace.yaml packages docs scripts .husky",
"clean": "pnpm -r exec rm -rf dist build .turbo node_modules",
"prepare": "husky",
"setup": "tsx scripts/setup-cloudflare.ts",
"deploy:preflight": "tsx scripts/check-cloudflare-deploy-prereqs.ts",
"manifest:generate": "tsx scripts/generate-manifest.ts",
"manifest:sign": "tsx scripts/sign-manifest.ts",
"manifest:verify": "tsx scripts/verify-manifest.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.1.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,md,css}": [
"biome check --write --no-errors-on-unmatched"
],
"*.json": [
"biome check --write --no-errors-on-unmatched"
],
"*.go": [
"gofmt -w"
]
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"picomatch": "4.0.4",
"undici": "7.24.5",
"yaml": "2.8.3"
}
}
}