-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.93 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.93 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
79
80
{
"name": "simple-agent-manager",
"version": "0.1.0",
"private": true,
"description": "Serverless platform to spin up AI coding agent environments on-demand",
"keywords": [
"claude-code",
"ai-workspaces",
"devcontainers",
"cloudflare-workers"
],
"license": "AGPL-3.0-or-later",
"author": "Simple Agent Manager Contributors",
"type": "module",
"scripts": {
"build": "turbo run build",
"build:ui": "pnpm --filter @simple-agent-manager/ui build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:e2e:vm-agent-smoke": "node scripts/e2e/vm-agent-smoke.mjs",
"test:e2e:vm-agent-smoke:worker": "node scripts/e2e/vm-agent-smoke.mjs --control-plane=worker",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"typecheck": "turbo run typecheck",
"typecheck:ui": "pnpm --filter @simple-agent-manager/ui typecheck",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"deploy": "turbo run deploy",
"deploy:staging": "turbo run deploy:staging",
"db:migrate": "tsx scripts/deploy/run-migrations.ts --env production",
"db:migrate:staging": "tsx scripts/deploy/run-migrations.ts --env staging",
"db:migrate:local": "tsx scripts/deploy/run-migrations.ts --local",
"setup:github": "tsx scripts/deploy/setup-github.ts",
"setup:local": "tsx scripts/deploy/setup-local-dev.ts",
"quality:preflight": "tsx scripts/quality/check-preflight-evidence.ts",
"quality:wrangler-bindings": "tsx scripts/quality/check-wrangler-bindings.ts",
"quality:ast-checks": "tsx scripts/quality/ast-checks.ts",
"quality:file-sizes": "tsx scripts/quality/check-file-sizes.ts",
"quality:source-contract-tests": "tsx scripts/quality/check-source-contract-tests.ts",
"quality:specialist-review": "tsx scripts/quality/check-specialist-review-evidence.ts",
"quality:specialist-review:test": "npx vitest run --config scripts/quality/vitest.config.ts",
"test:infra": "pnpm --filter @simple-agent-manager/infra test",
"prepare": "husky"
},
"dependencies": {
"@iarna/toml": "2.2.5"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@types/iarna__toml": "2.0.5",
"@types/node": "catalog:",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-simple-import-sort": "13.0.0",
"husky": "9.1.7",
"lint-staged": "15.5.2",
"prettier": "3.8.1",
"ts-morph": "27.0.2",
"tsx": "catalog:",
"turbo": "2.7.6",
"typescript": "catalog:",
"vitest": "catalog:",
"zod": "catalog:"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.5.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
}
}