-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.48 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
{
"name": "inkcheck",
"version": "0.7.2",
"description": "Mechanical QA for ink stories — compile checks, bounded branch exploration, repro paths, and dead-content review.",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "tsc && node --test --test-concurrency=1 \"test/**/*.test.js\"",
"evaluate-shadow": "node dist/shadow-evaluation-cli.js",
"evaluate-promotion": "node dist/promotion-benchmark-cli.js",
"evaluate-campaign-children": "node dist/campaign-child-evaluation-cli.js",
"evaluate-long-tail": "node dist/long-tail-evaluation-cli.js",
"evaluate-agent-readiness": "node dist/agent-readiness-benchmark-cli.js",
"evaluate-loop-specialist": "node scripts/loop-specialist-evaluation.js",
"evaluate-gate-probe": "node scripts/gate-probe-evaluation.js",
"release-preflight": "node scripts/release-preflight.js",
"web": "node dist/web.js",
"usage-report": "node dist/usage-report.js"
},
"keywords": [
"ink",
"inkle",
"narrative",
"mcp",
"model-context-protocol",
"interactive-fiction",
"ci",
"testing"
],
"author": "Daniel Strader (chaoz23) <chaoz23@gmail.com>",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"inkjs": "^2.4.0",
"yaml": "^2.8.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.1.0",
"typescript": "^6.0.3"
},
"bin": {
"inkcheck": "dist/cli.js",
"inkcheck-mcp": "dist/server.js",
"inkcheck-web": "dist/web.js"
},
"files": [
"dist",
"web",
"benchmarks/agent-readiness-v1",
"benchmarks/results/concurrency-intercept-5m-v1.json",
"benchmarks/results/concurrency-activation-pilot-v2.json",
"benchmarks/results/concurrency-activation-handoff-v3.json",
"benchmarks/long-tail-partition-evaluation-v1.json",
"benchmarks/long-tail-promotion-v2.json",
"benchmarks/results/long-tail-partition-intercept-5m-v1.json",
"benchmarks/results/long-tail-partition-synthetic-control-v1.json",
"benchmarks/results/long-tail-promotion-v2.json",
"benchmarks/results/loop-specialist-intercept-100k-v1.json",
"benchmarks/results/gate-probe-intercept-5m-v1.json",
"skills/inkcheck",
"docs/inkjam-qa-guide.md",
"docs/hosted-checker.md",
"docs/agent-discovery.md",
"docs/agent-directed-qa-contracts.md",
"docs/qa-evidence-pins.md",
"docs/agent-readiness-benchmark.md",
"docs/config-schema-v1.json",
"docs/report-schema-v1.md",
"docs/machine-output.md",
"docs/local-artifacts.md",
"docs/local-checkpoints.md",
"docs/shared-checkpoint-schema-v1.md",
"docs/mcp-search-sessions.md",
"docs/campaign-policy-contract.md",
"docs/concurrency-evaluation.md",
"docs/long-tail-partition-evaluation.md",
"docs/product-engineering-scorecard.md",
"docs/rules-that-matter-0.7.md",
"docs/loop-specialist-evaluation.md",
"docs/compound-gate-inspection.md",
"docs/goal-probe-cli.md",
"docs/gate-probe-evaluation.md",
"docs/shadow-policy-evaluation.md",
"docs/promotion-benchmark.md",
"docs/promotion-policy-v2-evaluation.md",
"CHANGELOG.md",
"llms.txt",
"server.json",
"tool.json"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaoz23/inkcheck.git"
},
"homepage": "https://github.com/chaoz23/inkcheck#readme",
"bugs": {
"url": "https://github.com/chaoz23/inkcheck/issues"
}
}