@junyoung-kim/reins 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 +229 -0
- package/dist/cli.mjs +8598 -0
- package/dist/cli.mjs.map +1 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@junyoung-kim/reins",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "폰에서 AI 코딩 에이전트의 고삐를 쥐다 — 헤드리스 TUI (npx @junyoung-kim/reins)",
|
|
6
|
+
"bin": {
|
|
7
|
+
"reins": "dist/cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://gitlab.com/juny-glre/ai_remote_vibe_agent.git",
|
|
21
|
+
"directory": "apps/headless"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"start": "node ./dist/cli.mjs",
|
|
26
|
+
"dev": "tsx src/cli.tsx",
|
|
27
|
+
"typecheck": "tsc --noEmit",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"prepack": "tsup"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@xterm/headless": "^6.0.0",
|
|
33
|
+
"electron-log": "^5.4.3",
|
|
34
|
+
"ink": "^5.0.1",
|
|
35
|
+
"ink-select-input": "^6.2.0",
|
|
36
|
+
"ink-text-input": "^6.0.0",
|
|
37
|
+
"node-pty": "^1.1.0",
|
|
38
|
+
"p-limit": "^7.3.0",
|
|
39
|
+
"qrcode-terminal": "^0.12.0",
|
|
40
|
+
"react": "^18.3.1",
|
|
41
|
+
"simple-git": "^3.36.0",
|
|
42
|
+
"ssh2": "^1.17.0",
|
|
43
|
+
"ws": "^8.20.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@arva/core": "workspace:*",
|
|
47
|
+
"@arva/shared": "workspace:*",
|
|
48
|
+
"@types/node": "^24.10.1",
|
|
49
|
+
"@types/react": "^18.3.12",
|
|
50
|
+
"ink-testing-library": "^4.0.0",
|
|
51
|
+
"tsup": "^8.3.5",
|
|
52
|
+
"tsx": "^4.21.0",
|
|
53
|
+
"typescript": "^5.9.3",
|
|
54
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
55
|
+
"vitest": "^4.1.4"
|
|
56
|
+
}
|
|
57
|
+
}
|