-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 897 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 897 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
{
"name": "automomo",
"version": "0.1.0",
"private": true,
"description": "automomo room workspace with a local daemon environment.",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter @automomo/web dev",
"dev:local": "AUTH_SECRET=automomo-local-dev-secret pnpm --dir apps/web exec next dev --port 3003",
"dev:daemon": "pnpm --filter @automomo/daemon dev -- start --api-url http://localhost:3003",
"dev:daemon:once": "pnpm --filter @automomo/daemon dev -- once --api-url http://localhost:3003",
"docker:pi": "docker compose run --rm automomo-pi-env pi --help",
"docker:daemon": "docker compose up automomo-pi-env",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
},
"packageManager": "pnpm@10.12.4",
"devDependencies": {
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}