xclaude-cli 0.1.2
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/LICENSE +21 -0
- package/README.md +93 -0
- package/dist/xclaude.js +4293 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "xclaude-cli",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Run Claude Code under several claude.ai logins at once, with shared conversations and history",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"accounts",
|
|
9
|
+
"cli",
|
|
10
|
+
"tmux"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://github.com/ArmCyber/xclaude-cli#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/ArmCyber/xclaude-cli/issues"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/ArmCyber/xclaude-cli.git"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"type": "module",
|
|
22
|
+
"bin": {
|
|
23
|
+
"xclaude": "dist/xclaude.js"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist/",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=22.15"
|
|
32
|
+
},
|
|
33
|
+
"os": [
|
|
34
|
+
"darwin",
|
|
35
|
+
"linux"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "node scripts/build.mjs",
|
|
39
|
+
"typecheck": "tsc -p .",
|
|
40
|
+
"test": "node --experimental-strip-types --disable-warning=ExperimentalWarning --test --test-timeout=120000 \"test/**/*.test.ts\"",
|
|
41
|
+
"check": "npm run build && npm run typecheck && npm test",
|
|
42
|
+
"prepack": "npm run build",
|
|
43
|
+
"check:node22": "bash scripts/check-node22.sh"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "~22.15.35",
|
|
47
|
+
"esbuild": "^0.28.2",
|
|
48
|
+
"proper-lockfile": "^4.1.2",
|
|
49
|
+
"typescript": "^7.0.2"
|
|
50
|
+
},
|
|
51
|
+
"allowScripts": {
|
|
52
|
+
"esbuild@0.28.2": true
|
|
53
|
+
}
|
|
54
|
+
}
|