-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.88 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
{
"name": "the-framework",
"private": true,
"type": "module",
"license": "MIT",
"description": "The Framework: autonomous AI programming — coding agents work your repos unattended and hand the result off as pull requests.",
"packageManager": "pnpm@11.5.3",
"scripts": {
"build": "pnpm -C packages/framework build",
"// Serve the production build the way an install does: the daemon, not a static server": "",
"preview": "pnpm -C packages/framework preview",
"dev": "pnpm -C packages/framework dev",
"typecheck": "pnpm -C packages/framework typecheck && pnpm -C packages/the-framework.ai typecheck",
"clean": "pnpm -C packages/agent-data clean && pnpm -C packages/skill-branches clean && pnpm -C packages/skill-tickets clean && pnpm -C packages/skill-queue clean && pnpm -C packages/skill-logs clean && pnpm -C packages/agent-driver clean && pnpm -C packages/agent-scheduler clean && pnpm -C packages/framework clean",
"test": "pnpm -C packages/agent-data test && pnpm -C packages/skill-branches test && pnpm -C packages/skill-tickets test && pnpm -C packages/skill-queue test && pnpm -C packages/skill-logs test && pnpm -C packages/agent-driver test && pnpm -C packages/agent-scheduler test && pnpm -C packages/framework test",
"========= Website": "",
"// Develop website https://the-framework.ai locally": "",
"website": "cd packages/the-framework.ai/ && pnpm run dev",
"// Build website for production": "",
"website:build": "cd packages/the-framework.ai/ && pnpm run build",
"// Test website (CI)": "",
"website:test": "cd packages/the-framework.ai/ && echo 'no tests yet'"
},
"devDependencies": {
"@gemstack/skill-branches": "workspace:*",
"@gemstack/skill-tickets": "workspace:*",
"@gemstack/skill-queue": "workspace:*",
"@gemstack/skill-logs": "workspace:*",
"agent-scheduler": "workspace:*",
"typescript": "^7.0.2"
}
}