-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.2 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.2 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
{
"name": "hermes-remote-control",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:with-notify": "bash sidecars/notifier/dev-with-notify.sh",
"dev:with-registry": "bash sidecars/registry/dev-with-registry.sh",
"dev:with-registry-and-notify": "bash sidecars/registry/dev-with-registry-and-notify.sh",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"smoke": "node scripts/smoke-build.mjs",
"smoke:ws": "node scripts/smoke-ws.mjs",
"test": "node --import tsx --test src/actions.test.ts src/model.test.ts src/md.test.ts src/render.test.ts src/reconnect.test.ts src/settings.test.ts src/transport.test.ts vite.config.test.ts sidecars/registry/registry.test.ts sidecars/dev-scripts.test.ts",
"test:e2e": "vite build && node scripts/e2e-reconnect.mjs",
"registry": "tsx sidecars/registry/index.ts",
"notify": "node sidecars/notifier/index.mjs",
"smoke:notify": "node sidecars/notifier/smoke.mjs"
},
"devDependencies": {
"@types/node": "^24.10.1",
"playwright-core": "^1.60.0",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"vite": "^7.2.4"
},
"dependencies": {
"web-push": "^3.6.7"
}
}