@shmulikdav/solix 1.0.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,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Solix — agent solar system</title>
7
+ <script type="module" crossorigin src="/assets/index-Wwg3QOZU.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-Bqgw2ZPc.css">
9
+ </head>
10
+ <body class="bg-solix-bg text-slate-100 font-mono antialiased">
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
File without changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@shmulikdav/solix",
3
+ "version": "1.0.0",
4
+ "description": "Solix — a solar-system command center for Claude Code agents",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "solix": "./dist/index.js"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/shmulikdav/solarix.git",
25
+ "directory": "packages/cli"
26
+ },
27
+ "homepage": "https://github.com/shmulikdav/solarix#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/shmulikdav/solarix/issues"
30
+ },
31
+ "keywords": [
32
+ "claude-code",
33
+ "claude",
34
+ "agents",
35
+ "orchestration",
36
+ "cli",
37
+ "anthropic"
38
+ ],
39
+ "scripts": {
40
+ "dev": "tsx watch src/index.ts",
41
+ "build": "tsup && node ./scripts/copy-static.mjs",
42
+ "typecheck": "tsc --noEmit",
43
+ "prepublishOnly": "pnpm -w -r build",
44
+ "pack:dry": "pnpm -w -r build && npm pack --dry-run"
45
+ },
46
+ "dependencies": {
47
+ "@hono/node-server": "^1.11.0",
48
+ "better-sqlite3": "^11.0.0",
49
+ "commander": "^12.0.0",
50
+ "hono": "^4.4.0",
51
+ "nanoid": "^5.0.7",
52
+ "open": "^10.1.0",
53
+ "ws": "^8.17.0"
54
+ },
55
+ "devDependencies": {
56
+ "@solix/server": "workspace:*",
57
+ "@solix/shared": "workspace:*",
58
+ "@types/better-sqlite3": "^7.6.10",
59
+ "@types/node": "^20.12.0",
60
+ "@types/ws": "^8.5.10",
61
+ "tsup": "^8.0.0",
62
+ "tsx": "^4.7.2",
63
+ "typescript": "^5.4.5"
64
+ }
65
+ }