-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.36 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.36 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
{
"name": "bit-vcs-bithub",
"private": true,
"scripts": {
"bench": "moon run src/cmd/bithub_bench --target js -- . 20",
"test:e2e": "playwright test",
"test:e2e:mars": "playwright test --project mars-http-ssr",
"test:e2e:viewer": "playwright test --project bithub-viewer",
"test:e2e:cf": "playwright test --project main-fetch-cloudflare",
"test:e2e:ci": "playwright test --project ci-webhook",
"test:e2e:git": "playwright test --project commits-branches",
"test:e2e:features": "playwright test --project features",
"deploy": "moon build --target js && wrangler deploy",
"dev:worker": "moon build --target js && wrangler dev",
"serve": "moon run src/cmd/main_ssr --target js -- 4174",
"serve:repo": "moon run src/cmd/main_ssr --target js -- 4174 .",
"agent:daemon": "tsx scripts/agent-daemon.ts",
"agent:daemon:once": "tsx scripts/agent-daemon.ts --once",
"agent:run": "tsx scripts/agent-harness.ts",
"agent:parallel": "tsx scripts/parallel-agents.ts",
"agent:demo": "tsx scripts/multi-agent-demo.ts",
"issue:create": "tsx scripts/create-issue.ts",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"tsx": "^4.21.0",
"wrangler": "^4.74.0"
},
"dependencies": {
"@hono/node-server": "^1.19.9"
}
}