-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "claude-code-command",
"version": "1.1.3",
"description": "Transform natural language requests into OS-specific shell commands using Claude Code CLI",
"main": "dist/index.js",
"bin": {
"ccc": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": ["cli", "claude", "command", "natural-language", "shell", "terminal", "ai", "claude-code"],
"author": "Bigsy",
"license": "MIT",
"homepage": "https://github.com/Bigsy/claude-code-command#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Bigsy/claude-code-command.git"
},
"bugs": {
"url": "https://github.com/Bigsy/claude-code-command/issues"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"clipboardy": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.2",
"typescript": "^5.3.0"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
}
}