@cospacehq/cli 0.1.0 → 0.1.1

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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +13 -14
package/dist/index.js CHANGED
@@ -192,7 +192,7 @@ async function runInit(projectRoot) {
192
192
  }
193
193
  async function main() {
194
194
  const program = new Command();
195
- program.name("cospace").description("Local-first multi-agent AI workspace").version("0.1.0");
195
+ program.name("cospace").description("Local-first multi-agent AI workspace").version("0.1.1");
196
196
  program
197
197
  .command("init")
198
198
  .description("Create CoSpace config and launch the app")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cospacehq/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -9,25 +9,24 @@
9
9
  "bin": {
10
10
  "cospace": "dist/index.js"
11
11
  },
12
+ "dependencies": {
13
+ "commander": "^14.0.1",
14
+ "enquirer": "^2.4.1",
15
+ "@cospacehq/server": "0.1.1",
16
+ "@cospacehq/shared": "0.1.1"
17
+ },
18
+ "devDependencies": {
19
+ "@types/node": "^22.13.10",
20
+ "tsx": "^4.19.3",
21
+ "typescript": "^5.8.2"
22
+ },
12
23
  "scripts": {
13
24
  "build": "tsc -p tsconfig.json",
14
25
  "sync:web-dist": "node ./scripts/sync-web-dist.mjs",
15
- "prepack": "pnpm --dir ../web build && pnpm run build && pnpm run sync:web-dist",
16
26
  "dev": "tsx src/index.ts",
17
27
  "start": "node dist/index.js",
18
28
  "postinstall": "node dist/postinstall.js || true",
19
29
  "typecheck": "tsc -p tsconfig.json --noEmit",
20
30
  "lint": "echo \"No lint configured for @cospacehq/cli\""
21
- },
22
- "dependencies": {
23
- "@cospacehq/server": "workspace:*",
24
- "@cospacehq/shared": "workspace:*",
25
- "commander": "^14.0.1",
26
- "enquirer": "^2.4.1"
27
- },
28
- "devDependencies": {
29
- "@types/node": "^22.13.10",
30
- "tsx": "^4.19.3",
31
- "typescript": "^5.8.2"
32
31
  }
33
- }
32
+ }