-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 4.18 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@lvlup-sw/exarchos",
"version": "2.12.0-preview.3",
"description": "Structure for agentic development — durable SDLC workflows, convergence gates, agent teams, and audit trails for Claude Code",
"type": "module",
"bin": {
"exarchos-release-verify": "dist/release-verify.js"
},
"files": [
"dist/bin",
"dist/release-verify.js",
"agents",
"commands",
"skills",
"command-aliases",
"rules",
"scripts",
"hooks",
"settings.json",
".claude-plugin",
"CLAUDE.md.template",
"AGENTS.md",
"!**/*.test.sh",
"!**/*.test.ts",
"!**/test-fixtures",
"!**/trigger-tests"
],
"scripts": {
"build": "npm run codegen:runtimes && tsc && npm run build:binary && npm run build:release-verifier && npm run build:skills && npm run build:hooks",
"build:binary": "bun run scripts/build-binary.ts --all",
"build:release-verifier": "bun build servers/exarchos-mcp/src/release/release-verify-cli.ts --target=node --format=esm --banner \"#!/usr/bin/env node\" --outfile dist/release-verify.js",
"codegen:runtimes": "bun run scripts/codegen-runtimes.ts",
"runtimes:guard": "npm run codegen:runtimes && git diff --exit-code -- src/runtimes/embedded.ts || (echo 'src/runtimes/embedded.ts is out of sync with runtimes/*.yaml — run npm run codegen:runtimes' && exit 1)",
"generate:agents": "tsx servers/exarchos-mcp/src/agents/generate-agents.ts",
"build:skills": "npm run generate:agents && node dist/build-skills.js",
"build:hooks": "node dist/build-hooks.js",
"lint": "eslint \"servers/exarchos-mcp/src/**/*.ts\"",
"quality-check": "npm run lint:invariants && npm run lint:test-first-drift",
"lint:inv6": "node scripts/lint-inv6.mjs skills-src/",
"lint:test-first-drift": "node scripts/lint-test-first-drift.mjs commands agents skills-src",
"lint:invariants": "tsx servers/exarchos-mcp/src/architecture/vocabulary-lint-cli.ts",
"lint:envelopes": "node scripts/lint-envelopes.mjs",
"desc:budget-guard": "tsx servers/exarchos-mcp/src/architecture/description-budget-cli.ts",
"skills:guard": "node dist/skills-guard.js && (npm run lint:inv6 || true) && npm run lint:test-first-drift",
"hooks:guard": "node dist/hooks-guard.js",
"prepare": "tsc",
"bench": "cd servers/exarchos-mcp && npx vitest bench",
"bench:plan-format": "tsx servers/exarchos-mcp/src/evals/benchmarks/plan-format-corpus.ts",
"test": "vitest",
"test:unit": "vitest run --project unit --project integration",
"test:process": "vitest run --project process --passWithNoTests",
"test:all": "vitest run",
"test:outcome": "vitest run --project outcome",
"test:run": "npm run test:unit",
"typecheck": "tsc --noEmit",
"version:sync": "bash scripts/sync-versions.sh",
"version:check": "bash scripts/sync-versions.sh --check",
"validate": "node scripts/run-validate.mjs",
"validate:list": "node scripts/run-validate.mjs --list",
"docs:dev": "cd documentation && npm run docs:dev",
"docs:build": "cd documentation && npm run docs:build",
"docs:preview": "cd documentation && npm run docs:preview",
"lint:windows": "npm run lint"
},
"keywords": [
"claude-code-plugin",
"sdlc",
"workflow",
"agent-governance",
"agent-teams",
"event-sourcing",
"code-review",
"quality-gates",
"tdd",
"durable-workflows",
"audit-trail"
],
"author": "lvlup-sw",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lvlup-sw/exarchos.git"
},
"homepage": "https://github.com/lvlup-sw/exarchos#readme",
"bugs": {
"url": "https://github.com/lvlup-sw/exarchos/issues"
},
"devDependencies": {
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"dependency-cruiser": "^17.4.3",
"eslint": "^9.39.4",
"knip": "^6.6.2",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.62.0",
"vitest": "^3.0.0",
"zod": "^4.3.6"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.2.1",
"js-yaml": "^4.1.1"
},
"workspaces": [
"packages/*"
]
}