-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.59 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
{
"name": "archon",
"private": true,
"version": "0.0.1",
"description": "Deterministic coordination kernel for local AI agents and human–AI workflows",
"workspaces": [
"packages/*",
"modules/first-party/*",
"modules/providers/*"
],
"scripts": {
"build": "turbo run build",
"dev-ui": "pnpm --filter @archon/desktop dev",
"dev-cli": "pnpm --filter @archon/cli build && node packages/cli/dist/bin/archon.js",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"prepare": "git config core.hooksPath .githooks",
"check:dep-graph": "bash tools/ci/check-dep-graph.sh",
"check:ic4": "bash tools/ci/check-ic4-kernel-boundary.sh",
"check:ic5": "bash tools/ci/check-ic5-no-self-enable.sh",
"factory:accept": "npx tsx factory/tools/accept.ts",
"factory:complete": "npx tsx factory/tools/complete.ts",
"factory:derive": "npx tsx factory/tools/derive.ts",
"factory:execute": "npx tsx factory/tools/execute.ts",
"factory:status": "npx tsx factory/tools/status.ts",
"factory:validate": "npx tsx factory/tools/validate.ts",
"factory:migrate": "npx tsx factory/tools/migrate.ts",
"factory:test": "cd factory && ./node_modules/.bin/vitest run",
"factory:install": "cd factory && npm install --no-save"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"turbo": "^2.3.0",
"typescript": "^5.5.0"
},
"packageManager": "pnpm@9.0.0"
}