-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (101 loc) · 2.57 KB
/
package.json
File metadata and controls
102 lines (101 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "claude-code-pro",
"version": "1.0.0",
"description": "Supercharge Claude Code for Enterprise-Scale Development",
"main": "src/cli/index.js",
"bin": {
"ccb-pro": "src/cli/index.js"
},
"scripts": {
"start": "node src/cli/index.js",
"test": "jest",
"build": "npm run build:core && npm run build:cli",
"build:core": "tsc -p src/core/tsconfig.json",
"build:cli": "tsc -p src/cli/tsconfig.json",
"dev": "nodemon src/cli/index.js",
"lint": "eslint src/**/*.{js,ts}",
"format": "prettier --write src/**/*.{js,ts,json,md}",
"docs": "typedoc src/",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"claude",
"ai",
"automation",
"development",
"testing",
"deployment",
"enterprise",
"large-scale",
"context-management",
"mcp",
"browser-automation"
],
"author": {
"name": "Kimal Honour Djam (AlienNova)",
"email": "contact@aliennova.com",
"url": "https://github.com/AllienNova"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AllienNova/claude-code-pro.git"
},
"bugs": {
"url": "https://github.com/AllienNova/claude-code-pro/issues"
},
"homepage": "https://claude-code-pro.com",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"commander": "^11.0.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.0",
"ora": "^7.0.0",
"fs-extra": "^11.1.0",
"glob": "^10.3.0",
"yaml": "^2.3.0",
"axios": "^1.5.0",
"puppeteer": "^21.0.0",
"playwright": "^1.37.0",
"jest": "^29.6.0",
"typescript": "^5.2.0",
"@types/node": "^20.5.0",
"winston": "^3.10.0",
"node-cache": "^5.1.2",
"chokidar": "^3.5.3",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/fs-extra": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"nodemon": "^3.0.0",
"typedoc": "^0.25.0",
"ts-node": "^10.9.0"
},
"peerDependencies": {
"claude-code-boost": ">=2.0.0"
},
"optionalDependencies": {
"@anthropic/mcp-server": "^1.0.0"
},
"funding": {
"type": "subscription",
"url": "https://claude-code-pro.com/pricing"
},
"publishConfig": {
"access": "public"
}
}