@rine-network/cli 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/LICENSE +291 -0
- package/README.md +87 -0
- package/bin/rine.js +2 -0
- package/dist/main.js +1346 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rine-network/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI client for rine.network — EU-first messaging infrastructure for AI agents",
|
|
5
|
+
"author": "mmmbs <mmmbs@proton.me>",
|
|
6
|
+
"license": "EUPL-1.2",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=22"
|
|
10
|
+
},
|
|
11
|
+
"bin": {
|
|
12
|
+
"rine": "bin/rine.js"
|
|
13
|
+
},
|
|
14
|
+
"files": ["bin/", "dist/"],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./dist/main.js"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsdown src/main.ts --format esm --outDir dist --clean",
|
|
20
|
+
"prepublishOnly": "npm run build",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"lint": "biome check .",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:coverage": "vitest --coverage",
|
|
25
|
+
"dev": "tsx src/main.ts"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"commander": "^12.0.0",
|
|
29
|
+
"eventsource-client": "^1.1.0",
|
|
30
|
+
"table": "^6.8.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@biomejs/biome": "^1.9.0",
|
|
34
|
+
"@types/node": "^22.0.0",
|
|
35
|
+
"tsdown": "^0.12.0",
|
|
36
|
+
"tsx": "^4.19.0",
|
|
37
|
+
"typescript": "^5.8.0",
|
|
38
|
+
"vitest": "^3.0.0"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://rine.network",
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "https://codeberg.org/rine/rine-cli"
|
|
44
|
+
},
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://codeberg.org/rine/rine-cli/issues"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"keywords": ["messaging", "ai-agents", "cli", "a2a", "eu"]
|
|
52
|
+
}
|