-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.69 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
{
"name": "@tdwhere/do-it",
"version": "0.5.1",
"description": "Cross-host workflow skills and agents for truth-first do-it delivery (Codex + Claude Code).",
"type": "module",
"license": "MIT",
"author": "tdwhere123",
"repository": {
"type": "git",
"url": "git+https://github.com/tdwhere123/codex-workflow.git"
},
"bugs": {
"url": "https://github.com/tdwhere123/codex-workflow/issues"
},
"homepage": "https://github.com/tdwhere123/codex-workflow#readme",
"keywords": [
"agentic-workflow",
"ai-agents",
"codex-cli",
"codex",
"do-it",
"workflow",
"skills",
"agents",
"subagents",
"developer-tools"
],
"publishConfig": {
"access": "public"
},
"files": [
".claude-plugin/",
"agents/",
"bin/",
"commands/",
"dist/claude/",
"docs/",
"hooks/",
"install/",
"manifest.json",
"README.zh-CN.md",
"scripts/",
"skills/custom/README.md",
"skills/do-it/"
],
"bin": {
"do-it": "./bin/do-it.mjs"
},
"scripts": {
"setup": "node bin/do-it.mjs setup",
"install:do-it": "node install/manage.mjs install",
"install:claude": "node install/manage.mjs install --target=claude",
"doctor": "node install/manage.mjs doctor",
"doctor:claude": "node install/manage.mjs doctor --target=claude",
"build:claude-agents": "node scripts/build-claude-agents.mjs",
"prepack": "node scripts/build-claude-agents.mjs",
"do-it": "node bin/do-it.mjs",
"lint": "bash scripts/lint-hooks.sh",
"lint-hooks": "bash scripts/lint-hooks.sh",
"test-hooks": "bash scripts/test-hooks.sh",
"test": "npm run lint-hooks && npm run test-hooks"
},
"engines": {
"node": ">=18"
}
}