-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.51 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
{
"name": "github-symphony",
"private": true,
"packageManager": "pnpm@9.15.9",
"scripts": {
"build": "pnpm -r build",
"build:cli": "pnpm --filter @gh-symphony/cli... build",
"cli": "node packages/cli/dist/index.js --config .runtime",
"e2e:init": "bash e2e/seed/init-local.sh",
"e2e:start": "cd .runtime/e2e/work/test-repo && GH_SYMPHONY_FILE_TRACKER_ISSUES_PATH=\"$(pwd)/../../../../e2e/fixtures/issues.json\" SYMPHONY_WORKER_COMMAND=\"node $(pwd)/../../../../e2e/dist/stub-worker.js\" node ../../../../packages/cli/dist/index.js repo start --http 4680",
"e2e:claude": "bash test/e2e/claude/run-docker-e2e.sh",
"dev:orchestrator": "pnpm --filter @gh-symphony/orchestrator dev",
"dev:worker": "pnpm --filter @gh-symphony/worker dev",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"test:watch": "vitest",
"typecheck": "pnpm -r --workspace-concurrency=1 typecheck",
"format": "prettier --check .",
"format:write": "prettier --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm --filter @gh-symphony/cli publish --provenance --access public"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.22.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vitest": "^3.0.8"
}
}