clustr-ai 0.1.8

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/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "clustr-ai",
3
+ "version": "0.1.8",
4
+ "description": "Multi-agent workspace for AI coding sessions",
5
+ "license": "MIT",
6
+ "author": "Clustr",
7
+ "keywords": [
8
+ "ai",
9
+ "multi-agent",
10
+ "claude",
11
+ "codex",
12
+ "coding",
13
+ "terminal",
14
+ "orchestration"
15
+ ],
16
+ "homepage": "https://hiclustrmvp.vercel.app",
17
+ "engines": {
18
+ "node": ">=18.0.0"
19
+ },
20
+ "type": "module",
21
+ "bin": {
22
+ "clustr-ai": "./bin/clustr.js"
23
+ },
24
+ "files": [
25
+ "bin/",
26
+ "dist/",
27
+ "package.json"
28
+ ],
29
+ "scripts": {
30
+ "dev:server": "tsx watch server/index.ts",
31
+ "dev:client": "vite",
32
+ "dev": "concurrently \"npm:dev:server\" \"npm:dev:client\"",
33
+ "build:server": "node esbuild.server.mjs",
34
+ "build:client": "vite build",
35
+ "build": "npm run build:server && npm run build:client",
36
+ "start": "node bin/clustr.js",
37
+ "postinstall": "find node_modules/node-pty/prebuilds -name spawn-helper -exec chmod +x {} + 2>/dev/null || true",
38
+ "prepublishOnly": "npm run build && node scripts/strip-dev-deps.mjs",
39
+ "postpublish": "node -e \"require('fs').existsSync('package.json.bak')&&(require('fs').renameSync('package.json.bak','package.json'),console.log('Restored package.json'))\""
40
+ },
41
+ "dependencies": {
42
+ "better-sqlite3": "9.6.0",
43
+ "node-pty": "^1.1.0"
44
+ }
45
+ }