-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 4.47 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
{
"name": "@octopusgarage/english-pilot",
"version": "0.1.1",
"license": "MIT",
"description": "English-dominant conversation gate, coaching assistant, and review system for AI workflows.",
"repository": {
"type": "git",
"url": "git+https://github.com/OctopusGarage/english-pilot.git"
},
"homepage": "https://github.com/OctopusGarage/english-pilot#readme",
"bugs": "https://github.com/OctopusGarage/english-pilot/issues",
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"dist/src",
"scripts",
"docs",
"install.sh",
"INSTALL.md",
"README.md",
"PROJECT_PLAN.md"
],
"bin": {
"english-pilot": "dist/src/bin/english-pilot.js"
},
"scripts": {
"build": "rm -rf dist && tsc && chmod +x dist/src/bin/english-pilot.js",
"audit": "npm audit --audit-level=moderate",
"ci": "npm run audit && npm run project-health",
"depcruise": "depcruise src --config .dependency-cruiser.cjs",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"knip": "knip",
"lint": "eslint .",
"lint:sh": "shellcheck --severity=warning install.sh scripts/*.sh",
"mutation": "stryker run",
"portable-fixtures": "scripts/check-portable-fixtures.sh",
"prepublishOnly": "npm run build",
"prepare": "husky 2>/dev/null || true",
"project-health": "npm run lint && npm run lint:sh && npm run portable-fixtures && npm run typecheck && npm run test:coverage && npm run build && npm run smoke && npm run smoke:mcp-stdio && npm run depcruise && npm run knip",
"release": "scripts/release.sh",
"secrets": "scripts/gitleaks-scan.sh git",
"secrets:staged": "scripts/gitleaks-scan.sh staged",
"eval:suite": "scripts/eval-suite.sh",
"eval:suite:real:codex": "scripts/eval-suite.sh --backend codex --real-agent",
"eval:suite:real:claude": "scripts/eval-suite.sh --backend claude --real-agent",
"eval:agent:codex:dry": "node dist/src/bin/english-pilot.js eval agent --backend codex --case channel-weather --dry-run --json",
"eval:agent:claude:dry": "node dist/src/bin/english-pilot.js eval agent --backend claude --case channel-weather --dry-run --json",
"eval:agent:codex:history:dry": "node dist/src/bin/english-pilot.js eval agent --backend codex --case history-lesson --dry-run --json",
"eval:agent:claude:history:dry": "node dist/src/bin/english-pilot.js eval agent --backend claude --case history-lesson --dry-run --json",
"eval:agent:codex": "node dist/src/bin/english-pilot.js eval agent --backend codex --case channel-weather --json",
"eval:agent:claude": "node dist/src/bin/english-pilot.js eval agent --backend claude --case channel-weather --json",
"smoke": "node dist/src/bin/english-pilot.js eval smoke",
"smoke:json": "node dist/src/bin/english-pilot.js eval smoke --json",
"smoke:mcp-stdio": "node scripts/smoke-mcp-stdio.mjs",
"service:install": "node dist/src/bin/english-pilot.js service install",
"service:install-dev": "node dist/src/bin/english-pilot.js service install-dev",
"service:uninstall": "node dist/src/bin/english-pilot.js service uninstall",
"service:status": "node dist/src/bin/english-pilot.js service status",
"service:restart": "node dist/src/bin/english-pilot.js service restart",
"service:logs": "node dist/src/bin/english-pilot.js service logs",
"start": "node dist/src/bin/english-pilot.js run",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:eval": "vitest run tests/eval",
"test:coverage": "vitest run --coverage && node scripts/write-coverage-badge.mjs",
"typecheck": "tsc --noEmit",
"verify": "npm run secrets && npm run audit && npm run project-health"
},
"engines": {
"node": ">=22.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^20.19.0",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/coverage-v8": "^4.1.10",
"dependency-cruiser": "^18.0.0",
"eslint": "^10.6.0",
"husky": "^9.1.7",
"knip": "^6.25.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"typescript": "^5.5.0",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.70.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"qrcode-terminal": "^0.12.0",
"zod": "^3.25.76"
},
"overrides": {
"axios": "^1.17.0",
"qs": "^6.15.3"
}
}