forked from preset-io/agor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
{
"name": "agor",
"version": "0.7.1",
"private": true,
"description": "Next-gen agent orchestration platform",
"keywords": [
"ai",
"agents",
"orchestration",
"session-management"
],
"repository": {
"type": "git",
"url": "https://github.com/preset-io/agor.git"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"docs:dev": "pnpm --filter @agor/docs dev",
"docs:build": "pnpm --filter @agor/docs build",
"docs:generate": "pnpm --filter @agor/docs generate",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "prettier --write .",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"check": "pnpm typecheck && pnpm lint && pnpm build",
"check:fix": "pnpm lint:fix && pnpm typecheck && pnpm build",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky",
"cli:link": "pnpm -C apps/agor-cli link --global",
"cli:unlink": "pnpm -C apps/agor-cli unlink --global",
"agor": "NODE_NO_WARNINGS=1 pnpm --filter @agor/cli exec tsx bin/dev.ts",
"seed": "tsx scripts/seed.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@google-analytics/admin": "^9.0.1",
"husky": "^9.1.7",
"knip": "^5.66.2",
"lint-staged": "^16.2.5",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0 <21.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"npm-run-path": "^5.3.0"
}
}
}