-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 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
{
"name": "agentforge-monorepo",
"version": "0.2.0",
"private": true,
"description": "AgentForge — open framework for agentic workflows. Bring your process, LLMs, scripts, agents, and infra; we handle the orchestration.",
"type": "module",
"workspaces": [
"packages/core",
"packages/platform"
],
"scripts": {
"build:dashboard": "cd packages/core/src/dashboard/app && npm install --no-audit --no-fund && npm run build",
"build:ts": "tsc --build",
"build:assets": "node scripts/copy-build-assets.mjs",
"build": "npm run build:dashboard && npm run build:ts && npm run build:assets",
"dev": "tsx packages/core/src/cli/index.ts",
"start": "tsx packages/core/src/cli/index.ts",
"pretest": "npm run build:dashboard",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check --write .",
"typecheck": "tsc --build",
"skills:validate": "node scripts/validate-skills.mjs",
"clean": "rm -rf packages/core/dist packages/core/tsconfig.tsbuildinfo packages/core/src/dashboard/dist packages/platform/dist packages/platform/tsconfig.tsbuildinfo"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/better-sqlite3": "^7.6.13",
"@types/dockerode": "^4.0.1",
"@types/node": "^25.5.2",
"@types/pdfkit": "^0.17.5",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.4",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}