@kontourai/station-cli 0.6.0-nightly.2439
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 +201 -0
- package/README.md +271 -0
- package/dist/station.mjs +1169 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kontourai/station-cli",
|
|
3
|
+
"version": "0.6.0-nightly.2439",
|
|
4
|
+
"description": "Command-line client for Station hosts: chat, agents, sessions, and fleet management",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": "24.x"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"station": "./dist/station.mjs"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/station.mjs",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "node esbuild.config.mjs && node ../../scripts/write-dist-stamp.mjs",
|
|
19
|
+
"prepack": "node esbuild.config.mjs"
|
|
20
|
+
},
|
|
21
|
+
"author": "Station",
|
|
22
|
+
"license": "Apache-2.0",
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/kontourai/station.git",
|
|
29
|
+
"directory": "packages/cli"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"esbuild": "^0.28.1"
|
|
33
|
+
},
|
|
34
|
+
"peerDependenciesMeta": {
|
|
35
|
+
"esbuild": {
|
|
36
|
+
"optional": true
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@kontourai/station-connect": "^0.5.1",
|
|
41
|
+
"@kontourai/station-contracts": "^0.7.0",
|
|
42
|
+
"@kontourai/station-sdk": "^0.7.0",
|
|
43
|
+
"@kontourai/station-shared": "^0.7.0",
|
|
44
|
+
"commander": "^11.1.0",
|
|
45
|
+
"esbuild": "^0.28.1",
|
|
46
|
+
"tsx": "^4.23.13"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@napi-rs/keyring": "1.3.0",
|
|
50
|
+
"qrcode": "^1.5.4"
|
|
51
|
+
}
|
|
52
|
+
}
|