-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "peerly",
"private": false,
"version": "1.13.1",
"description": "Serverless P2P team collaboration — verified identity, invite-only workspaces, chat, files, and video via Trystero",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/XeonFX/Peerly.git"
},
"packageManager": "npm@11.16.0",
"engines": {
"node": ">=24 <25",
"npm": ">=11"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": "^11.0.0",
"onFail": "error"
}
},
"type": "module",
"scripts": {
"dev": "node server/dev.mjs",
"dev:relay": "node server/dev-relay.mjs",
"dev:app": "vite --host",
"stop": "lsof -ti :8080 -ti :5173 -ti :5174 -ti :17273 2>/dev/null | xargs kill -9 2>/dev/null || true",
"build": "tsc -b && vite build && npm run guard:bundle && npm run guard:size",
"postbuild": "node scripts/configure-auth-bridge.mjs",
"test": "vitest run --maxWorkers=4",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:a11y": "playwright test e2e/accessibility.spec.ts",
"test:coverage": "vitest run --coverage --maxWorkers=4",
"test:mutation": "stryker run",
"test:e2e:nostr": "E2E_SIGNALING=nostr playwright test -g \"two users connect and see each other|chat messages sync between peers|file sharing between peers|shared image preview survives page reload\"",
"test:e2e:ui": "playwright test --ui",
"lint": "oxlint",
"preview": "vite preview",
"guard:bundle": "node scripts/guard-bundle.mjs",
"guard:size": "node packages/core/scripts/check-vite-bundle.mjs dist/assets 700000",
"check:csp": "node scripts/check-csp.mjs",
"check:relays": "node scripts/check-relays.mjs",
"audit:production": "npm audit --omit=dev --audit-level=high",
"test:load:relay": "node scripts/load-relay.mjs",
"verify:production": "node scripts/verify-production.mjs",
"worker:check": "wrangler types --check && wrangler deploy --dry-run --env=''",
"test:bump": "node --test scripts/bump-version.test.mjs"
},
"dependencies": {
"@tensorflow/tfjs": "^4.22.0",
"@trystero-p2p/core": "^0.25.3",
"@trystero-p2p/nostr": "^0.25.3",
"@trystero-p2p/supabase": "^0.25.3",
"nsfwjs": "^4.3.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@emnapi/core": "^1.11.2",
"@emnapi/runtime": "^1.11.2",
"@playwright/test": "^1.52.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/react": "^16.3.2",
"@trystero-p2p/ws-relay": "^0.25.3",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^3.2.7",
"daisyui": "^5.6.18",
"jsdom": "^29.1.1",
"oxlint": "^1.71.0",
"tailwindcss": "^4.3.2",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^3.2.4",
"wrangler": "^4.113.0"
}
}