-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.96 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
{
"name": "dispatch",
"version": "0.28.0",
"private": true,
"description": "Local-first control plane for remote Codex CLI agents with simulator media",
"type": "module",
"engines": {
"bun": ">=1.3.13",
"node": ">=22.0.0"
},
"scripts": {
"dev": "pnpm --filter @dispatch/server dev",
"build": "pnpm -r build",
"build:bun": "bun scripts/build-bun-binaries.mjs",
"build:web": "pnpm --filter @dispatch/web build",
"check:web": "pnpm --filter @dispatch/web check",
"lint:web": "pnpm --filter @dispatch/web lint",
"finalize:web": "pnpm run check:web && pnpm run build:web",
"format": "prettier --check .",
"format:write": "prettier --write .",
"start": "pnpm --filter @dispatch/server start",
"release": "bin/dispatch-server update",
"db:migrate": "pnpm --filter @dispatch/server db:migrate",
"check": "pnpm --filter @dispatch/server check && pnpm run check:web && tsc -p tsconfig.scripts.json --noEmit",
"ci": "pnpm run format && pnpm run check && pnpm run lint:web && pnpm run build && pnpm run test && pnpm run test:e2e",
"coverage": "pnpm --filter @dispatch/server test:coverage && pnpm --filter @dispatch/web test:coverage",
"test": "pnpm --filter @dispatch/server test && pnpm --filter @dispatch/web test",
"test:watch": "pnpm --filter @dispatch/server test:watch",
"test:e2e": "bash scripts/e2e-isolated.sh",
"prepare": "husky"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,css,md,yaml,yml}": [
"prettier --write"
],
"apps/web/src/**/*.{ts,tsx}": [
"eslint --config apps/web/eslint.config.js"
],
"**/*.{ts,tsx}": [
"bash -c 'pnpm run check'"
]
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"playwright": "^1.54.2",
"prettier": "^3.8.3",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
}
}