@kmmao/happy-agent 0.2.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/README.md +156 -0
- package/bin/happy-agent.mjs +38 -0
- package/dist/index.cjs +1037 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +1035 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kmmao/happy-agent",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "CLI client for controlling Happy Coder agents remotely",
|
|
5
|
+
"author": "Kirill Dubovitskiy",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"homepage": "https://github.com/kmmao/happy/tree/main/packages/happy-agent",
|
|
9
|
+
"bugs": "https://github.com/kmmao/happy/issues",
|
|
10
|
+
"repository": "kmmao/happy",
|
|
11
|
+
"bin": {
|
|
12
|
+
"happy-agent": "./bin/happy-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
|
+
"scripts": {
|
|
35
|
+
"typecheck": "tsc --noEmit",
|
|
36
|
+
"build": "shx rm -rf dist && npx tsc --noEmit && pkgroll",
|
|
37
|
+
"test": "$npm_execpath run build && vitest run",
|
|
38
|
+
"dev": "tsx src/index.ts",
|
|
39
|
+
"prepublishOnly": "$npm_execpath run build && $npm_execpath test",
|
|
40
|
+
"release": "npx --no-install release-it"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@kmmao/happy-wire": "^0.1.0",
|
|
44
|
+
"axios": "^1.13.2",
|
|
45
|
+
"chalk": "^5.6.2",
|
|
46
|
+
"commander": "^13.1.0",
|
|
47
|
+
"qrcode-terminal": "^0.12.0",
|
|
48
|
+
"socket.io-client": "^4.8.1",
|
|
49
|
+
"tweetnacl": "^1.0.3"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": ">=20",
|
|
53
|
+
"@types/qrcode-terminal": "^0.12.2",
|
|
54
|
+
"pkgroll": "^2.14.2",
|
|
55
|
+
"release-it": "^19.0.6",
|
|
56
|
+
"shx": "^0.3.3",
|
|
57
|
+
"tsx": "^4.20.6",
|
|
58
|
+
"typescript": "5.9.3",
|
|
59
|
+
"vitest": "^3.2.4"
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"registry": "https://registry.npmjs.org"
|
|
63
|
+
},
|
|
64
|
+
"packageManager": "yarn@1.22.22"
|
|
65
|
+
}
|