agentrejoin-agent 0.1.0
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 +661 -0
- package/README.md +190 -0
- package/bin/agentrejoin-agent.mjs +38 -0
- package/dist/index.cjs +1393 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1391 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentrejoin-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI client for controlling AgentRejoin sessions remotely",
|
|
5
|
+
"author": "AgentRejoin contributors",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"homepage": "https://github.com/Altman-conquer/agentrejoin/tree/main/packages/agentrejoin-agent",
|
|
9
|
+
"bugs": "https://github.com/Altman-conquer/agentrejoin/issues",
|
|
10
|
+
"repository": "Altman-conquer/agentrejoin",
|
|
11
|
+
"bin": {
|
|
12
|
+
"agentrejoin-agent": "./bin/agentrejoin-agent.mjs"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.cjs",
|
|
15
|
+
"module": "./dist/index.mjs",
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"require": {
|
|
20
|
+
"types": "./dist/index.d.cts",
|
|
21
|
+
"default": "./dist/index.cjs"
|
|
22
|
+
},
|
|
23
|
+
"import": {
|
|
24
|
+
"types": "./dist/index.d.mts",
|
|
25
|
+
"default": "./dist/index.mjs"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"bin",
|
|
32
|
+
"package.json"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"axios": "^1.13.2",
|
|
36
|
+
"chalk": "^5.6.2",
|
|
37
|
+
"commander": "^13.1.0",
|
|
38
|
+
"qrcode-terminal": "^0.12.0",
|
|
39
|
+
"socket.io-client": "^4.8.1",
|
|
40
|
+
"tweetnacl": "^1.0.3",
|
|
41
|
+
"agentrejoin-wire": "0.1.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": ">=20",
|
|
45
|
+
"@types/qrcode-terminal": "^0.12.2",
|
|
46
|
+
"pkgroll": "^2.14.2",
|
|
47
|
+
"release-it": "^19.0.6",
|
|
48
|
+
"tsx": "^4.20.6",
|
|
49
|
+
"typescript": "5.9.3",
|
|
50
|
+
"vitest": "^3.2.4"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"registry": "https://registry.npmjs.org"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc --noEmit && pkgroll",
|
|
58
|
+
"test": "$npm_execpath run build && vitest run",
|
|
59
|
+
"test:integration": "$npm_execpath run build && vitest run --config vitest.integration.config.ts",
|
|
60
|
+
"dev": "tsx src/index.ts",
|
|
61
|
+
"release": "npx --no-install release-it"
|
|
62
|
+
}
|
|
63
|
+
}
|