@specmarket/cli 0.0.3 → 0.0.4

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/CHANGELOG.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.4
4
+
5
+ - Fix npm install: publish with `pnpm publish` to resolve `workspace:*` protocol
6
+ - 0.0.1–0.0.3 were broken on npm (workspace protocol not supported by npm)
7
+
3
8
  ## 0.0.3
4
9
 
5
- - Fix npm install crash: move `workspace:*` deps to devDependencies and bundle via tsup
10
+ - Move `workspace:*` deps to devDependencies and bundle via tsup
6
11
  - Add `@specmarket/convex` to tsup `noExternal` so Convex API refs are inlined into dist
7
12
 
8
13
  ## 0.0.2
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@specmarket/cli",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "description": "SpecMarket CLI - discover, validate, execute, and publish AI specs",
6
6
  "bin": {
@@ -14,14 +14,6 @@
14
14
  "types": "./dist/index.d.ts"
15
15
  }
16
16
  },
17
- "scripts": {
18
- "build": "tsup",
19
- "dev": "tsup --watch",
20
- "test": "vitest run",
21
- "test:watch": "vitest",
22
- "typecheck": "tsc --noEmit",
23
- "lint": "tsc --noEmit"
24
- },
25
17
  "dependencies": {
26
18
  "commander": "^12.1.0",
27
19
  "convex": "^1.32.0",
@@ -37,19 +29,33 @@
37
29
  "inquirer": "^12.0.0"
38
30
  },
39
31
  "devDependencies": {
40
- "@specmarket/shared": "workspace:*",
41
- "@specmarket/convex": "workspace:*",
42
32
  "@types/debug": "^4.1.12",
43
33
  "@types/archiver": "^6.0.3",
44
34
  "@types/inquirer": "^9.0.7",
45
35
  "@types/node": "^22.0.0",
46
36
  "typescript": "^5.9.3",
47
37
  "tsup": "^8.3.0",
48
- "vitest": "^3.0.0"
38
+ "vitest": "^3.0.0",
39
+ "@specmarket/shared": "0.0.1",
40
+ "@specmarket/convex": "0.0.1"
49
41
  },
50
42
  "engines": {
51
43
  "node": ">=20"
52
44
  },
53
- "keywords": ["specmarket", "cli", "spec", "ai", "automation"],
54
- "license": "MIT"
55
- }
45
+ "keywords": [
46
+ "specmarket",
47
+ "cli",
48
+ "spec",
49
+ "ai",
50
+ "automation"
51
+ ],
52
+ "license": "MIT",
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "dev": "tsup --watch",
56
+ "test": "vitest run",
57
+ "test:watch": "vitest",
58
+ "typecheck": "tsc --noEmit",
59
+ "lint": "tsc --noEmit"
60
+ }
61
+ }