-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 938 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 938 Bytes
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
{
"name": "project-telos-mcp",
"version": "0.2.0",
"type": "module",
"description": "Local-first MCP workbench for Project Telos receipts, manifests, routing ledgers, creative engines, model-foundry lanes, and verification packets.",
"license": "FSL-1.1-ALv2",
"engines": {
"node": ">=20"
},
"bin": {
"telos": "./demo/telos.mjs",
"telos-mcp": "./demo/telos-mcp.mjs"
},
"files": [
"demo",
"!demo/**/*.test.mjs",
"!demo/integrations/scankii-synthetic-corpus",
"!demo/integrations/smallharness-dogfood-pack",
"!demo/README.md",
"docs/CURRENT-STATE.md",
"docs/brand",
"USAGE.md"
],
"scripts": {
"start": "node demo/telos-mcp.mjs",
"mcp": "node demo/telos-mcp.mjs",
"catalog": "node demo/catalog.mjs --summary",
"manifest": "node demo/server-manifest.mjs --summary",
"test:mcp": "node --test demo/telos-mcp.test.mjs demo/mcp-server-launch.test.mjs"
}
}