relavium 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.
@@ -0,0 +1,41 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "sqlite",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "6",
8
+ "when": 1780609468600,
9
+ "tag": "0000_organic_the_santerians",
10
+ "breakpoints": true
11
+ },
12
+ {
13
+ "idx": 1,
14
+ "version": "6",
15
+ "when": 1781673255697,
16
+ "tag": "0001_pale_scorpion",
17
+ "breakpoints": true
18
+ },
19
+ {
20
+ "idx": 2,
21
+ "version": "6",
22
+ "when": 1781796470382,
23
+ "tag": "0002_round_umar",
24
+ "breakpoints": true
25
+ },
26
+ {
27
+ "idx": 3,
28
+ "version": "6",
29
+ "when": 1781879145602,
30
+ "tag": "0003_cloudy_wind_dancer",
31
+ "breakpoints": true
32
+ },
33
+ {
34
+ "idx": 4,
35
+ "version": "6",
36
+ "when": 1781909685036,
37
+ "tag": "0004_numerous_ultimatum",
38
+ "breakpoints": true
39
+ }
40
+ ]
41
+ }
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "relavium",
3
+ "version": "0.1.0",
4
+ "description": "Relavium CLI (`relavium`) — run agent workflows from the terminal; the engine's first real consumer.",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "type": "module",
7
+ "bin": {
8
+ "relavium": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "drizzle"
13
+ ],
14
+ "keywords": [
15
+ "relavium",
16
+ "ai",
17
+ "agent",
18
+ "workflow",
19
+ "cli",
20
+ "llm"
21
+ ],
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/HodeTech/Relavium.git",
25
+ "directory": "apps/cli"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.12.0"
29
+ },
30
+ "dependencies": {
31
+ "@anthropic-ai/sdk": "^0.101.0",
32
+ "@clack/prompts": "^1.6.0",
33
+ "@google/genai": "^2.8.0",
34
+ "@jitl/quickjs-singlefile-mjs-release-sync": "^0.32.0",
35
+ "@napi-rs/keyring": "^1.3.0",
36
+ "better-sqlite3": "^12.10.0",
37
+ "commander": "^12.1.0",
38
+ "drizzle-orm": "^0.45.2",
39
+ "ink": "^6.8.0",
40
+ "openai": "^6.42.0",
41
+ "quickjs-emscripten-core": "^0.32.0",
42
+ "react": "^19.2.7",
43
+ "smol-toml": "^1.3.4",
44
+ "yaml": "^2.9.0",
45
+ "zod": "^3.23.0"
46
+ },
47
+ "devDependencies": {
48
+ "@types/node": "^20.12.0",
49
+ "@types/react": "^19.2.17",
50
+ "eslint": "^9.17.0",
51
+ "tsup": "^8.5.0",
52
+ "typescript": "^5.7.2",
53
+ "vitest": "^3.0.0",
54
+ "@relavium/core": "0.0.0",
55
+ "@relavium/llm": "0.0.0",
56
+ "@relavium/db": "0.0.0",
57
+ "@relavium/shared": "0.0.0"
58
+ },
59
+ "scripts": {
60
+ "build": "tsup",
61
+ "typecheck": "tsc -p tsconfig.json --noEmit",
62
+ "lint": "eslint src",
63
+ "test": "vitest run"
64
+ }
65
+ }