-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 3.37 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
{
"name": "wincode-mcp",
"version": "0.13.2",
"description": "Windows-first MCP gateway: .NET project graph, evidence-bounded context, honest change-impact, long-running process hygiene",
"main": "dist/index.js",
"type": "module",
"scripts": {
"check": "node scripts/check.mjs",
"check:desktop": "node scripts/check.mjs --desktop",
"test:inventory": "node scripts/check.mjs --inventory",
"delivery:verify": "node scripts/delivery-manifest.mjs --verify",
"build": "node scripts/build.mjs",
"start": "node dist/index.js",
"dev": "tsx src/index.ts --development",
"test": "tsx --test tests/core-cache.test.ts tests/workspace-files.test.ts tests/text-symbols.test.ts tests/context-packing.test.ts tests/composite-tools.test.ts tests/mcp-stdio.test.ts tests/stability-lifecycle.test.ts tests/cache-budgets.test.ts tests/process-failures.test.ts tests/request-concurrency.test.ts tests/evidence-confidence.test.ts tests/watch-invalidation.test.ts tests/resource-cleanup.test.ts tests/stage1-cleanup.test.ts tests/ui-hardening.test.ts tests/ui-source-review.test.ts tests/v071-acceptance.test.ts tests/ui-background.test.ts tests/ui-audit.test.ts tests/ui-query.test.ts tests/context-efficiency.test.ts tests/agent-efficiency-benchmark.test.ts tests/workspace-summary.test.ts tests/runtime-identity.test.ts tests/runtime-contract.test.ts tests/context-coverage.test.ts tests/semantic-identity.test.ts tests/ui-code-candidates.test.ts tests/skill-sync.test.ts tests/local-text.test.ts tests/repomix-disabled.test.ts tests/workspace-watch-close.test.ts tests/workspace-lifecycle.test.ts tests/failure-recovery.test.ts tests/tool-contracts.test.ts tests/architecture-boundaries.test.ts tests/lifecycle-cancellation.test.ts tests/delivery-contract.test.ts tests/roslyn-contracts.test.ts tests/gateway-exit.test.ts",
"test:verify": "tsx tests/verify.ts",
"benchmark:agent": "tsx scripts/benchmark-agent-efficiency.ts",
"test:benchmark": "tsx --test tests/agent-efficiency-benchmark.test.ts",
"test:product": "tsx scripts/verify-product-tasks.ts",
"test:repomix-real": "tsx scripts/verify-repomix-real.ts",
"test:mixed-load": "tsx scripts/verify-mixed-load.ts",
"test:error-contracts": "tsx scripts/verify-error-contracts.ts",
"test:roslyn-host": "node scripts/verify-roslyn-host.mjs",
"test:tavern-context": "tsx scripts/verify-tavern-context.ts",
"test:e2e": "tsx scripts/test-mcp-client.ts",
"typecheck": "tsc -p tsconfig.test.json",
"test:ui": "tsx --test --test-concurrency=1 tests/flaui-adapter.test.ts tests/ui-inspect-mcp.test.ts tests/ui-window-list.test.ts",
"test:all": "npm run check && npm run check:desktop",
"test:ui-query": "tsx scripts/verify-ui-query.ts",
"test:ui-code": "tsx --test tests/ui-code-runtime.test.ts",
"skill:check": "node scripts/sync-skill.mjs",
"skill:sync": "node scripts/sync-skill.mjs --apply",
"test:roslyn-gateway": "node scripts/verify-roslyn-gateway.mjs"
},
"keywords": [
"mcp",
"windows",
"ai-agent",
"coding-agent",
"repomix",
"code-intelligence",
"roslyn"
],
"author": "WinCode Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/client": "2.0.0",
"@modelcontextprotocol/server": "2.0.0"
},
"devDependencies": {
"@types/node": "^22.13.9",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=22"
}
}