-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.93 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.93 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
{
"name": "@hongmaple0820/scale-engine",
"version": "0.48.0",
"description": "Executable AI agent governance with workflow gates, evidence, skill/tool orchestration, and traceable HTML artifacts",
"repository": {
"type": "git",
"url": "git+https://github.com/hongmaple0820/scale-engine.git"
},
"bugs": {
"url": "https://github.com/hongmaple0820/scale-engine/issues"
},
"homepage": "https://github.com/hongmaple0820/scale-engine#readme",
"type": "module",
"bin": {
"scale": "dist/api/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"docs/README.md",
"docs/reference",
"docs/architecture",
"docs/migration",
"docs/guides",
"docs/start",
"docs/workflow",
"examples/demo-projects/agent-governance-demo",
"scripts/workflow/lib",
"scripts/workflow/setup-smoke.mjs",
"scripts/workflow/provider-rehearsal.mjs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "bun --watch src/api/cli.ts",
"test": "vitest run --reporter dot --pool=forks --maxWorkers=4 --minWorkers=1",
"test:serial": "vitest run --reporter dot --pool=forks --poolOptions.forks.maxForks=1 --poolOptions.forks.minForks=1",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"smoke:setup": "node scripts/workflow/setup-smoke.mjs",
"smoke:providers": "node scripts/workflow/provider-rehearsal.mjs",
"smoke:gbrain": "node scripts/workflow/provider-rehearsal.mjs --skip-graphify --require-gbrain",
"smoke:graphify": "node scripts/workflow/provider-rehearsal.mjs --skip-gbrain --require-graphify",
"release:check": "npm run typecheck && npm run lint && npm test && npm run smoke:setup && npm run smoke:providers -- --write-report && npm run build && npm audit --omit=dev && git diff --check && npm pack --dry-run",
"mcp": "node dist/api/mcp.js",
"serve": "node dist/api/http.js"
},
"dependencies": {
"@hono/node-server": "^2.0.4",
"@modelcontextprotocol/sdk": "1.29.0",
"better-sqlite3": "^11.10.0",
"chokidar": "^3.6.0",
"citty": "^0.1.6",
"content-type": "1.0.5",
"echarts": "^6.1.0",
"execa": "^9.3.0",
"hono": "^4.5.0",
"js-yaml": "^4.1.0",
"pino": "^9.3.0",
"pino-pretty": "^11.2.0",
"type-is": "2.0.1",
"zod": "^3.23.0"
},
"overrides": {
"content-type": "1.0.5",
"type-is": "2.0.1",
"qs": "6.15.2"
},
"optionalDependencies": {
"playwright": "^1.50.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^9.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}