@rivora/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.
Files changed (3) hide show
  1. package/README.md +129 -0
  2. package/dist/index.js +187709 -0
  3. package/package.json +83 -0
package/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@rivora/cli",
3
+ "version": "0.1.0",
4
+ "description": "Rivora CLI - Infrastructure Intelligence Layer",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "type": "module",
8
+ "bin": {
9
+ "rivora": "./dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist/index.js",
13
+ "README.md"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "homepage": "https://rivora.dev",
19
+ "bugs": {
20
+ "email": "support@rivora.dev"
21
+ },
22
+ "keywords": [
23
+ "infrastructure",
24
+ "cli",
25
+ "devops",
26
+ "kubernetes",
27
+ "aws",
28
+ "ai",
29
+ "automation"
30
+ ],
31
+ "author": "Rivora",
32
+ "license": "UNLICENSED",
33
+ "engines": {
34
+ "bun": ">=1.0.0"
35
+ },
36
+ "scripts": {
37
+ "dev": "bun run --watch src/index.ts",
38
+ "start": "bun run src/index.ts",
39
+ "build": "bun build src/index.ts --outdir dist --target node",
40
+ "prepublishOnly": "bun run build",
41
+ "build:binary": "bun build ./src/index.ts --compile --target=bun --outfile=dist/rivora",
42
+ "build:binaries": "chmod +x scripts/build-binaries.sh && ./scripts/build-binaries.sh",
43
+ "build:all": "bun run build:binaries",
44
+ "release": "bun run build:binaries && ./scripts/upload-to-r2.sh",
45
+ "test": "bun test",
46
+ "type-check": "tsc --noEmit",
47
+ "test:binary": "chmod +x scripts/test-binary.sh && ./scripts/test-binary.sh",
48
+ "release:prepare": "chmod +x scripts/create-release.sh && ./scripts/create-release.sh",
49
+ "upload:r2": "chmod +x scripts/upload-to-r2.sh && ./scripts/upload-to-r2.sh"
50
+ },
51
+ "devDependencies": {
52
+ "@types/bun": "latest",
53
+ "@types/inquirer": "^9.0.7",
54
+ "@types/node": "^20.10.0",
55
+ "@types/uuid": "^11.0.0",
56
+ "vitest": "^4.0.16"
57
+ },
58
+ "peerDependencies": {
59
+ "typescript": "^5"
60
+ },
61
+ "dependencies": {
62
+ "@aws-sdk/client-cloudwatch": "^3.490.0",
63
+ "@aws-sdk/client-ec2": "^3.490.0",
64
+ "@aws-sdk/client-iam": "^3.490.0",
65
+ "@aws-sdk/client-rds": "^3.490.0",
66
+ "@aws-sdk/client-s3": "^3.490.0",
67
+ "@aws-sdk/client-sts": "^3.490.0",
68
+ "@aws-sdk/credential-providers": "^3.490.0",
69
+ "@kubernetes/client-node": "^0.20.0",
70
+ "@octokit/rest": "^21.1.1",
71
+ "@opentui/core": "^0.1.50",
72
+ "chalk": "^5.3.0",
73
+ "cli-table3": "^0.6.5",
74
+ "commander": "^11.1.0",
75
+ "eventsource-parser": "^1.1.2",
76
+ "inquirer": "^9.2.12",
77
+ "jose": "^6.1.3",
78
+ "ora": "^7.0.1",
79
+ "uuid": "^13.0.0",
80
+ "ws": "^8.16.0",
81
+ "zod": "^3.22.4"
82
+ }
83
+ }