sakuraai 0.0.1
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 +15 -0
- package/dist/index.js +1996 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sakuraai",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Sakura Agent CLI + local runtime for managing AI coding sessions (Claude Code, Codex, OpenCode) and reaching them privately from the Sakura mobile app over Tailscale",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"sakuraai": "dist/index.js",
|
|
9
|
+
"sakura": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"cli",
|
|
13
|
+
"typescript",
|
|
14
|
+
"command-line",
|
|
15
|
+
"agent",
|
|
16
|
+
"claude",
|
|
17
|
+
"codex",
|
|
18
|
+
"opencode",
|
|
19
|
+
"remote-execution",
|
|
20
|
+
"tailscale"
|
|
21
|
+
],
|
|
22
|
+
"author": "Sakura",
|
|
23
|
+
"homepage": "https://sakura.mom",
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"!dist/**/*.map",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"build:watch": "tsup --watch",
|
|
35
|
+
"dev": "tsx src/index.ts",
|
|
36
|
+
"clean": "rimraf dist",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"prepublishOnly": "npm run clean && npm run build"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"chalk": "^5.3.0",
|
|
42
|
+
"cli-table3": "^0.6.5",
|
|
43
|
+
"commander": "^12.1.0",
|
|
44
|
+
"ora": "^8.1.0",
|
|
45
|
+
"qrcode-terminal": "^0.12.0"
|
|
46
|
+
},
|
|
47
|
+
"optionalDependencies": {
|
|
48
|
+
"better-sqlite3": "^11.3.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/better-sqlite3": "^7.6.11",
|
|
52
|
+
"@types/node": "^22.7.0",
|
|
53
|
+
"@types/qrcode-terminal": "^0.12.2",
|
|
54
|
+
"rimraf": "^6.0.1",
|
|
55
|
+
"tsup": "^8.3.0",
|
|
56
|
+
"tsx": "^4.19.0",
|
|
57
|
+
"typescript": "^5.6.0"
|
|
58
|
+
}
|
|
59
|
+
}
|