forked from SakuraByteCore/codexmate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.06 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.06 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
{
"name": "codexmate",
"version": "0.0.12",
"description": "Codex/Claude Code 配置与会话管理 CLI + Web 工具",
"main": "cli.js",
"bin": {
"codexmate": "./cli.js"
},
"files": [
"cli.js",
"web-ui.html",
"lib/",
"web-ui/",
"res/",
"doc/",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"exports": {
".": "./cli.js",
"./lib/*": "./lib/*.js",
"./web-ui/*": "./web-ui/*",
"./res/*": "./res/*"
},
"scripts": {
"dev": "node cli.js run",
"start": "node cli.js",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node tests/unit/run.mjs",
"test:e2e": "node tests/e2e/run.js",
"pretest": "node scripts/ensure-test-deps.js"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"json5": "^2.2.3",
"zip-lib": "^1.2.1"
},
"engines": {
"node": ">=14"
},
"keywords": [
"codex",
"claude",
"claude-code",
"config",
"session",
"web-ui",
"provider",
"ai",
"llm",
"cli"
],
"author": "ymkiux",
"license": "Apache-2.0"
}