-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 817 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 817 Bytes
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
{
"name": "claude-workflow-kit",
"version": "1.0.8",
"description": "One-command Claude Code workflow bootstrap — Opus-plans, Sonnet-executes",
"bin": {
"claude-workflow-kit": "bin/init.js"
},
"files": [
".claude",
"CLAUDE.md",
".mcp.json",
"setup.sh",
"setup.ps1",
".gitignore-template",
".code-review-graphignore",
"bin"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepack": "node -e \"const f=require('fs'),p='.claude/settings.local.json';f.existsSync(p)&&f.renameSync(p,'.settings.local.json.bak')\"",
"postpack": "node -e \"const f=require('fs'),t='.settings.local.json.bak';f.existsSync(t)&&f.renameSync(t,'.claude/settings.local.json')\""
},
"keywords": ["claude", "claude-code", "ai", "workflow", "template"],
"license": "MIT"
}