-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.05 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
{
"name": "mancode",
"version": "0.4.2",
"description": "AI coding agent workflow harness with mancode Continuity for cross-conversation tasks, decisions, verification, and team coordination.",
"type": "module",
"license": "AGPL-3.0-only",
"author": "whitelonng",
"homepage": "https://whitelonng.github.io/mancode/",
"repository": {
"type": "git",
"url": "git+https://github.com/whitelonng/mancode.git"
},
"bugs": {
"url": "https://github.com/whitelonng/mancode/issues"
},
"keywords": [
"claude-code",
"ai-agent",
"ai-coding-agent",
"harness",
"cli",
"yagni",
"workflow",
"agent-workflow",
"code-review",
"ai-code-review",
"code-quality",
"technical-debt",
"multi-agent",
"subagents",
"design-tokens",
"claude-code-plugin",
"claude-code-hooks",
"claude-code-skills",
"cursor",
"codex-cli",
"zcode"
],
"engines": {
"node": ">=20"
},
"bin": {
"mancode": "dist/cli.js"
},
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"README.en.md",
"logo.png",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:dist": "node scripts/verify-dist-adapters.mjs",
"test:windows-smoke": "node scripts/windows-smoke.mjs",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release:check": "node scripts/release-check.mjs",
"lint": "biome check src tests",
"typecheck": "tsc --noEmit",
"format": "biome format --write src tests",
"prepublishOnly": "npm run lint && npm run typecheck && npm run build && npm run test:dist && npm test"
},
"dependencies": {
"commander": "^12.1.0",
"js-tiktoken": "^1.0.21"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^3.2.7",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^3.2.6"
},
"overrides": {
"esbuild": "0.27.2"
}
}