-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.81 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
{
"name": "todo2code",
"version": "0.5.1",
"description": "todo2code (t2c): audited intent and team-communication extraction, evidence graphs, origin-to-workspace comparison and grounded summaries through CLI, MCP and A2A.",
"type": "module",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"bin": {
"t2c": "./dist/src/cli.js"
},
"exports": {
".": "./dist/src/index.js",
"./sdk": "./dist/src/sdk/typescript.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "node --test --test-concurrency=4 dist/test/*.test.js",
"verify:no-llm": "node scripts/verify-no-llm-imports.mjs",
"verify:modules": "node scripts/verify-module-boundaries.mjs",
"verify:env": "node scripts/verify-env-contract.mjs",
"verify:workflows": "node scripts/verify-workflow-yaml.mjs",
"verify:generated-analysis": "node scripts/verify-generated-analysis.mjs",
"verify:schemas": "node scripts/generate-response-schemas.mjs --check",
"verify:structured-responses": "node scripts/verify-structured-responses.mjs",
"schemas:generate": "npm run build && node scripts/generate-response-schemas.mjs",
"verify": "npm run check && npm run verify:no-llm && npm run verify:modules && npm run verify:env && npm run verify:workflows && npm run verify:generated-analysis && npm run verify:structured-responses && npm run build && npm run verify:schemas && npm test",
"start": "node dist/src/cli.js",
"mcp": "node dist/src/interfaces/mcp.js",
"a2a": "node dist/src/interfaces/a2a.js",
"diff": "node dist/src/cli.js diff",
"demo": "node dist/src/cli.js pipeline examples --task task.md --todo TODO.md --changelog CHANGELOG.md --docs 'docs/**/*.md' --nl-mode deterministic --markdown-mode deterministic --communication-mode deterministic --no-docs-llm --no-summary-llm --out .intent-demo && node dist/src/cli.js communication examples --project-dir project --ticket DEMO-101 --communication-mode deterministic --out examples/.intent-communication/analysis.json --md examples/.intent-communication/analysis.md --graph examples/.intent-communication/graph.json",
"examples:check": "npm run build && bash scripts/examples-check.sh",
"evaluate:gold": "npm run build && node dist/src/evaluation/gold-cli.js evaluation/gold/v2/dataset.json --require-perfect",
"evaluate:gold:v1": "npm run build && node dist/src/evaluation/gold-cli.js evaluation/gold/v1/dataset.json --require-perfect",
"live:check": "npm run build && node scripts/live-contract-check.mjs",
"live:models": "npm run build && node scripts/live-model-comparison.mjs"
},
"dependencies": {
"typescript": ">=5.8.3 <7"
},
"devDependencies": {
"@types/node": ">=20 <25"
},
"author": {
"name": "Tom Sapletta",
"email": "tom@sapletta.com"
}
}