-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "cc-pipe",
"version": "0.1.0",
"description": "Pipe operator for Claude Code skills — Unix-style skill composition",
"type": "module",
"bin": {
"cc-pipe": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": ["claude-code", "skills", "pipeline", "pipe"],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"nanoid": "^5.0.7",
"pino": "^9.5.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}