handsoff 0.0.1-beta.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 +217 -0
- package/config.example.toml +29 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +1940 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/daemon/process.js +8228 -0
- package/dist/daemon/process.js.map +1 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "handsoff",
|
|
3
|
+
"version": "0.0.1-beta.0",
|
|
4
|
+
"description": "Hands off your desk, hand off control to your phone. Monitor and control AI coding assistants from anywhere.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"handsoff": "./dist/cli/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"config.example.toml"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"author": "hymanmee <hymanmee@gmail.com>",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"handsoff",
|
|
18
|
+
"claude",
|
|
19
|
+
"claude code",
|
|
20
|
+
"claude-code",
|
|
21
|
+
"ai",
|
|
22
|
+
"remote",
|
|
23
|
+
"remote-control",
|
|
24
|
+
"remote-work",
|
|
25
|
+
"mobile",
|
|
26
|
+
"phone",
|
|
27
|
+
"notification",
|
|
28
|
+
"telegram",
|
|
29
|
+
"feishu",
|
|
30
|
+
"lark",
|
|
31
|
+
"assistant",
|
|
32
|
+
"coding",
|
|
33
|
+
"developer-tools",
|
|
34
|
+
"productivity",
|
|
35
|
+
"bridge",
|
|
36
|
+
"gateway"
|
|
37
|
+
],
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/tabclaw/handsoff.git"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup && chmod +x dist/cli/index.js",
|
|
44
|
+
"dev": "tsx src/cli/index.ts",
|
|
45
|
+
"test": "vitest",
|
|
46
|
+
"lint": "eslint src --ext .ts",
|
|
47
|
+
"typecheck": "tsc --noEmit",
|
|
48
|
+
"prepublishOnly": "npm run build",
|
|
49
|
+
"release:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
|
|
50
|
+
"release": "npm version minor && npm publish"
|
|
51
|
+
},
|
|
52
|
+
"publishConfig": {
|
|
53
|
+
"access": "public"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@iarna/toml": "^2.2.5",
|
|
57
|
+
"@inquirer/prompts": "^8.3.2",
|
|
58
|
+
"@larksuiteoapi/node-sdk": "^1.35.0",
|
|
59
|
+
"commander": "^12.0.0",
|
|
60
|
+
"dotenv": "^16.4.1",
|
|
61
|
+
"grammy": "^1.20.0",
|
|
62
|
+
"i18next": "^25.10.3",
|
|
63
|
+
"minimatch": "^10.2.5",
|
|
64
|
+
"node-pty": "^1.0.0",
|
|
65
|
+
"ora": "^9.3.0",
|
|
66
|
+
"picocolors": "^1.1.1",
|
|
67
|
+
"pino": "^8.19.0",
|
|
68
|
+
"ws": "^8.16.0",
|
|
69
|
+
"zod": "^3.25.76"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@types/node": "^20.11.0",
|
|
73
|
+
"@types/ws": "^8.5.10",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
75
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
76
|
+
"eslint": "^8.56.0",
|
|
77
|
+
"pino-pretty": "^10.2.0",
|
|
78
|
+
"tsup": "^8.0.0",
|
|
79
|
+
"tsx": "^4.7.0",
|
|
80
|
+
"typescript": "^5.3.0",
|
|
81
|
+
"vitest": "^1.2.0"
|
|
82
|
+
},
|
|
83
|
+
"engines": {
|
|
84
|
+
"node": ">=20.0.0"
|
|
85
|
+
}
|
|
86
|
+
}
|