@soloco/client 0.1.0-canary.20260620104728
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/LICENSE +30 -0
- package/README.md +60 -0
- package/dist/cli.js +22222 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@soloco/client",
|
|
3
|
+
"version": "0.1.0-canary.20260620104728",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Soloco 本地客户端 daemon — local-first 长期使命型 agent 操作系统的本地执行权威",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"soloco",
|
|
8
|
+
"ai",
|
|
9
|
+
"agents",
|
|
10
|
+
"agent-os",
|
|
11
|
+
"local-first",
|
|
12
|
+
"orchestration",
|
|
13
|
+
"daemon",
|
|
14
|
+
"cli"
|
|
15
|
+
],
|
|
16
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
17
|
+
"homepage": "https://github.com/EarthbornLab/soloco-new#readme",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/EarthbornLab/soloco-new.git",
|
|
21
|
+
"directory": "apps/client-daemon"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/EarthbornLab/soloco-new/issues"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"bin": {
|
|
28
|
+
"soloco": "dist/cli.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=22.5.0"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@hono/node-server": "^2.0.4",
|
|
42
|
+
"hono": "^4.12.23"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^22.19.1",
|
|
46
|
+
"tsup": "^8.5.1",
|
|
47
|
+
"tsx": "^4.19.3",
|
|
48
|
+
"typescript": "^5.8.3",
|
|
49
|
+
"@soloco/shared": "0.1.0"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsup && node scripts/normalize-node-builtins.mjs dist",
|
|
53
|
+
"dev": "tsx --env-file-if-exists=.env src/cli.ts",
|
|
54
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
55
|
+
"test": "pnpm run typecheck && tsx --test test/*.test.ts"
|
|
56
|
+
}
|
|
57
|
+
}
|