-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.66 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
{
"name": "@4xian/ccapi",
"version": "1.0.11",
"author": "4xian (https://github.com/4xian)",
"description": "A tool for quickly switching Claude Code and Codex configurations, one-click switching of URL, API_KEY, AUTH_TOKEN, MODEL, one-click switching of system environment variables, URL delay speed measurement, API validity test, and internationalization support",
"repository": {
"url": "git+https://github.com/4xian/claude-codex-api.git"
},
"homepage": "https://github.com/4xian",
"main": "dist/index.js",
"bin": {
"ccapi": "bin/ccapi"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"format": "prettier --write \"src/**/*.js\"",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude code",
"ccapi",
"ai",
"codex",
"config.toml",
"openai",
"anthropic",
"settings.json"
],
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cross-spawn": "^7.0.6",
"fs-extra": "^11.2.0",
"js-toml": "^1.0.2",
"js-yaml": "^4.1.0",
"json5": "^2.2.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rollup": "^4.9.0"
},
"engines": {
"node": ">=18.0.0"
},
"updateLogs": [
"1. fix some bugs"
],
"files": [
"dist",
"bin",
"README.md"
],
"lint-staged": {
"src/**/*.js": [
"prettier --write"
]
}
}