-
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) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 798 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": "@scriptgun/workerc",
"version": "0.2.0",
"description": "Claude Code session management CLI — commands, hooks, and progress tracking",
"type": "module",
"bin": {
"workerc": "dist/bin.js"
},
"main": "./dist/init.js",
"types": "./dist/init.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && cp -r src/templates dist/templates && chmod +x dist/bin.js",
"type:check": "tsc --noEmit"
},
"keywords": [
"claude",
"claude-code",
"session",
"hooks",
"cli",
"workerc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lovrozagar/workerc.git"
},
"dependencies": {
"@clack/prompts": "1.0.0"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}