tabclaw 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/README.md +113 -0
- package/config.example.toml +29 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +1858 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/daemon/process.js +5712 -0
- package/dist/daemon/process.js.map +1 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tabclaw",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Bridge AI programming assistants with messaging platforms",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"tabclaw": "./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
|
+
"tabclaw",
|
|
18
|
+
"claude",
|
|
19
|
+
"claude code",
|
|
20
|
+
"remote controller"
|
|
21
|
+
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/tabclaw/tabclaw.git"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup && chmod +x dist/cli/index.js",
|
|
28
|
+
"dev": "tsx src/cli/index.ts",
|
|
29
|
+
"dev:gateway": "tsx --watch src/daemon/process.ts",
|
|
30
|
+
"test": "vitest",
|
|
31
|
+
"test:ui": "vitest --ui",
|
|
32
|
+
"lint": "eslint src --ext .ts",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"prepublishOnly": "npm run build"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@iarna/toml": "^2.2.5",
|
|
38
|
+
"@inquirer/prompts": "^8.3.2",
|
|
39
|
+
"@larksuiteoapi/node-sdk": "^1.35.0",
|
|
40
|
+
"commander": "^12.0.0",
|
|
41
|
+
"dotenv": "^16.4.1",
|
|
42
|
+
"grammy": "^1.20.0",
|
|
43
|
+
"i18next": "^25.10.3",
|
|
44
|
+
"node-pty": "^1.0.0",
|
|
45
|
+
"ora": "^9.3.0",
|
|
46
|
+
"picocolors": "^1.1.1",
|
|
47
|
+
"pino": "^8.19.0",
|
|
48
|
+
"ws": "^8.16.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^20.11.0",
|
|
52
|
+
"@types/ws": "^8.5.10",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
54
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
55
|
+
"@vitest/ui": "^1.2.0",
|
|
56
|
+
"eslint": "^8.56.0",
|
|
57
|
+
"pino-pretty": "^10.2.0",
|
|
58
|
+
"tsup": "^8.0.0",
|
|
59
|
+
"tsx": "^4.7.0",
|
|
60
|
+
"typescript": "^5.3.0",
|
|
61
|
+
"vitest": "^1.2.0"
|
|
62
|
+
},
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=20.0.0"
|
|
65
|
+
}
|
|
66
|
+
}
|