-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.7 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
{
"name": "@m2ux/workflow-server",
"version": "0.1.0",
"description": "MCP server for AI agent workflow orchestration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:schemas": "tsx scripts/generate-schemas.ts",
"build:site": "tsx scripts/generate-site-data.ts",
"check:site": "tsx scripts/check-site-links.ts",
"check:svg": "tsx scripts/check-svg-layout.ts",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"check:binding": "tsx scripts/check-binding-fidelity.ts",
"check:identifiers": "tsx scripts/check-identifier-qualification.ts",
"check:self-input": "tsx scripts/check-self-provisioned-input.ts",
"check:activity-tech": "tsx scripts/check-activity-technique-overlap.ts",
"check:prism-lenses": "tsx scripts/check-prism-lens-reachability.ts",
"check:anchors": "tsx scripts/check-resource-anchors.ts",
"check:technique-template": "tsx scripts/check-technique-template.ts",
"check:variable-model": "tsx scripts/check-variable-model.ts",
"check:fragments": "tsx scripts/check-fragments.ts",
"check:review-mode": "tsx scripts/check-review-mode-gating.ts",
"check:stealth": "tsx scripts/check-stealth-isolation.ts",
"check:audience": "tsx scripts/check-audience.ts",
"bench:token": "tsx scripts/run-token-benchmark.ts"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.19.30",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.6.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"yaml": "^2.9.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
}
}