-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "ccplan",
"version": "0.2.0",
"description": "CLI to manage .claude/plans/*.md files — track status, list, filter, and clean up Claude Code plans",
"type": "module",
"bin": {
"ccplan": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --banner:js='#!/usr/bin/env node\nimport{createRequire}from\"module\";const require=createRequire(import.meta.url);'",
"build:bin": "bun build --compile ./src/index.ts --outfile ccplan --minify",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"lint": "oxlint src tests",
"format": "oxfmt src tests",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@inquirer/search": "^4.1.4",
"chalk": "^5.4.1",
"inquirer-checkbox-plus-plus": "^1.1.1",
"valibot": "^1.2.0"
},
"devDependencies": {
"@types/node": "^22",
"@typescript/native-preview": "^7.0.0-dev.20260228.1",
"esbuild": "^0.25",
"fast-check": "^4.5.3",
"oxlint": "^1.50.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fujitanisora/ccplan"
},
"keywords": [
"claude",
"claude-code",
"plan",
"cli",
"anthropic",
"ai-workflow"
],
"engines": {
"node": ">=18"
}
}