-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
54
55
56
57
{
"name": "claude-code-plus",
"version": "1.3.0",
"description": "Enhance Claude Code CLI with auto-approve hooks and modern shell support",
"type": "module",
"bin": {
"claude-code-plus": "./dist/cli.js"
},
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage"
},
"keywords": [
"claude",
"claude-code",
"cli",
"anthropic"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AbdelrahmanHafez/claude-code-plus"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@stylistic/eslint-plugin": "^5.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"assets"
]
}