-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "patchpilot",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "pnpm --filter @patchpilot/web dev",
"start": "pnpm --filter @patchpilot/web start",
"worker:dev": "pnpm --filter @patchpilot/worker dev",
"worker:queue": "pnpm --filter @patchpilot/worker dev",
"worker:watch": "tsx scripts/watch-worker.ts",
"verify:postgres": "tsx scripts/verify-postgres.ts",
"verify:queue": "tsx scripts/verify-queue.ts",
"db:status": "tsx scripts/db-status.ts",
"db:hydrate": "tsx scripts/db-hydrate.ts",
"verify:sbom": "tsx scripts/verify-sbom.ts",
"verify:container": "tsx scripts/verify-container.ts",
"install:scanners": "node scripts/install-scanners.mjs",
"deck:pptx": "node scripts/build-deck-pptx.mjs",
"demo:seed": "tsx scripts/make-demo-seed.ts",
"deploy:demo": "node scripts/deploy-demo.mjs",
"scan:cli": "tsx apps/cli/src/index.ts scan",
"cli:bundle": "pnpm --filter @patchpilot/cli bundle",
"mcp:dev": "pnpm --filter @patchpilot/mcp dev",
"verify:plugin-mcp": "pnpm --filter @patchpilot/mcp verify:plugin",
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"test": "pnpm --filter @patchpilot/core test",
"scan:fixture": "pnpm --filter @patchpilot/core scan:fixture",
"verify:local-e2e": "tsx scripts/verify-local-e2e.ts",
"verify:python-e2e": "tsx scripts/verify-python-e2e.ts",
"smoke:app": "node scripts/smoke-app.mjs",
"verify:env-redaction": "tsx scripts/verify-env-redaction.ts",
"verify:live-readiness": "tsx scripts/verify-live-readiness.ts",
"verify:github-live": "tsx scripts/verify-github-live.ts",
"verify:github-pr-live": "tsx scripts/verify-github-pr-live.ts",
"verify:telegram-live": "tsx scripts/verify-telegram-live.ts",
"demo:telegram-buttons": "tsx scripts/demo-telegram-buttons.ts",
"test:telegram-taps": "tsx scripts/test-telegram-taps.ts",
"verify:codex-cli": "tsx scripts/verify-codex-cli.ts",
"verify:codex-live": "tsx scripts/verify-codex-live.ts",
"verify:agent-provider": "tsx scripts/verify-agent-provider.ts",
"verify:openrouter-live": "tsx scripts/verify-provider-live.ts openrouter",
"verify:openai-compatible-live": "tsx scripts/verify-provider-live.ts openai-compatible",
"verify:ollama-live": "tsx scripts/verify-provider-live.ts ollama",
"verify:provider-chain": "tsx scripts/verify-provider-chain.ts",
"verify:provider-failover-consent": "tsx scripts/verify-provider-failover-consent.ts",
"verify:watch-mode": "tsx scripts/verify-watch-mode.ts",
"verify:deployment": "tsx scripts/verify-deployment.ts",
"verify:scanner-tools": "tsx scripts/verify-scanner-tools.ts",
"verify:scanners": "tsx scripts/verify-scanners.ts",
"scan:project-full": "tsx scripts/scan-project-full.ts",
"demo:scanner-coverage": "tsx scripts/demo-scanner-coverage.ts",
"demo:watch": "tsx scripts/demo-watch.ts",
"demo:provider-failover": "tsx scripts/demo-provider-failover.ts",
"demo:live": "tsx scripts/demo-live.ts",
"clean:demo-state": "tsx scripts/clean-demo-state.ts",
"audit:repo": "tsx scripts/audit-repo.ts",
"check:unit": "node scripts/check.mjs unit",
"check:quick": "node scripts/check.mjs quick",
"check:build": "node scripts/check.mjs build",
"check:integration": "node scripts/check.mjs integration",
"check:demo": "node scripts/check.mjs demo",
"check:live": "node scripts/check.mjs live",
"check:ui": "node scripts/check.mjs ui",
"check:security": "node scripts/check.mjs security",
"check:full": "node scripts/check.mjs full",
"check:clean": "node scripts/check.mjs clean"
},
"devDependencies": {
"@types/node": "^24.0.0",
"pptxgenjs": "^4.0.1",
"puppeteer-core": "^25.1.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
}
}