-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 954 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 954 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
25
26
{
"name": "pyro",
"version": "0.2.1",
"private": true,
"type": "module",
"scripts": {
"build:packages": "pnpm --filter \"./packages/*\" -r run build",
"build": "pnpm -r run build",
"check": "pnpm run typecheck && pnpm test && pnpm run build",
"dev": "concurrently -n gateway,control,dashboard -c blue,magenta,green \"pnpm --filter @pyro/gateway dev\" \"pnpm --filter @pyro/control-plane dev\" \"pnpm --filter @pyro/dashboard dev\"",
"test": "pnpm -r --stream --workspace-concurrency=1 run test",
"typecheck": "pnpm run build:packages && pnpm -r run typecheck",
"webhook:receiver": "node scripts/webhook-receiver.mjs",
"test:webhook": "node scripts/test-webhook.mjs",
"pyro": "node packages/cli/dist/bin.js"
},
"devDependencies": {
"concurrently": "^9.2.1",
"typescript": "^7.0.2",
"@types/node": "^26.6.2"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.10.0"
}