duojie-helper 0.2.21 → 0.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +160 -160
- package/bin/cli.js +328 -328
- package/package.json +53 -53
- package/src/index.js +323 -323
- package/src/tools/claude.js +198 -198
- package/src/tools/cline.js +103 -103
- package/src/tools/codex.js +154 -154
- package/src/tools/continue.js +158 -158
- package/src/tools/cursor.js +99 -99
- package/src/tools/droid.js +262 -261
- package/src/tools/openclaw.js +292 -292
- package/src/tools/opencode.js +216 -216
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "duojie-helper",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Duojie API 一键配置助手 - 支持 Claude Code, Droid, OpenClaw, Cursor, Cline 等主流 AI 编程工具",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"duojie": "./bin/cli.js",
|
|
8
|
-
"dj": "./bin/cli.js"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"dev": "node bin/cli.js",
|
|
12
|
-
"build": "echo 'No build needed'",
|
|
13
|
-
"test": "node bin/cli.js --help"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"duojie",
|
|
17
|
-
"ai",
|
|
18
|
-
"api",
|
|
19
|
-
"claude",
|
|
20
|
-
"droid",
|
|
21
|
-
"factory",
|
|
22
|
-
"openclaw",
|
|
23
|
-
"opencode",
|
|
24
|
-
"cursor",
|
|
25
|
-
"cline",
|
|
26
|
-
"config",
|
|
27
|
-
"helper"
|
|
28
|
-
],
|
|
29
|
-
"author": "lee john",
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "https://github.com/JohnLeeCn/duojie-helper.git"
|
|
34
|
-
},
|
|
35
|
-
"homepage": "https://api.duojie.games",
|
|
36
|
-
"files": [
|
|
37
|
-
"bin",
|
|
38
|
-
"src",
|
|
39
|
-
"templates",
|
|
40
|
-
"README.md"
|
|
41
|
-
],
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@iarna/toml": "^2.2.5",
|
|
44
|
-
"chalk": "^5.3.0",
|
|
45
|
-
"commander": "^12.1.0",
|
|
46
|
-
"inquirer": "^9.2.12",
|
|
47
|
-
"ora": "^8.0.1",
|
|
48
|
-
"fs-extra": "^11.2.0"
|
|
49
|
-
},
|
|
50
|
-
"engines": {
|
|
51
|
-
"node": ">=18.0.0"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "duojie-helper",
|
|
3
|
+
"version": "0.2.22",
|
|
4
|
+
"description": "Duojie API 一键配置助手 - 支持 Claude Code, Droid, OpenClaw, Cursor, Cline 等主流 AI 编程工具",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"duojie": "./bin/cli.js",
|
|
8
|
+
"dj": "./bin/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "node bin/cli.js",
|
|
12
|
+
"build": "echo 'No build needed'",
|
|
13
|
+
"test": "node bin/cli.js --help"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"duojie",
|
|
17
|
+
"ai",
|
|
18
|
+
"api",
|
|
19
|
+
"claude",
|
|
20
|
+
"droid",
|
|
21
|
+
"factory",
|
|
22
|
+
"openclaw",
|
|
23
|
+
"opencode",
|
|
24
|
+
"cursor",
|
|
25
|
+
"cline",
|
|
26
|
+
"config",
|
|
27
|
+
"helper"
|
|
28
|
+
],
|
|
29
|
+
"author": "lee john",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/JohnLeeCn/duojie-helper.git"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://api.duojie.games",
|
|
36
|
+
"files": [
|
|
37
|
+
"bin",
|
|
38
|
+
"src",
|
|
39
|
+
"templates",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@iarna/toml": "^2.2.5",
|
|
44
|
+
"chalk": "^5.3.0",
|
|
45
|
+
"commander": "^12.1.0",
|
|
46
|
+
"inquirer": "^9.2.12",
|
|
47
|
+
"ora": "^8.0.1",
|
|
48
|
+
"fs-extra": "^11.2.0"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=18.0.0"
|
|
52
|
+
}
|
|
53
|
+
}
|