openspecui 0.9.4 → 0.9.5

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/cli.mjs +17 -2
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -4504,7 +4504,22 @@ var yargs_default = Yargs;
4504
4504
 
4505
4505
  //#endregion
4506
4506
  //#region package.json
4507
- var version = "0.9.4";
4507
+ var version = "0.9.5";
4508
+ var devDependencies = {
4509
+ "@hono/node-server": "^1.14.1",
4510
+ "@openspecui/server": "workspace:*",
4511
+ "@openspecui/web": "workspace:*",
4512
+ "@types/node": "^22.10.2",
4513
+ "@types/ws": "^8.5.13",
4514
+ "@types/yargs": "^17.0.35",
4515
+ "hono": "^4.7.3",
4516
+ "open": "^10.1.0",
4517
+ "tsdown": "^0.16.6",
4518
+ "tsx": "^4.19.2",
4519
+ "typescript": "^5.7.2",
4520
+ "vitest": "^2.1.8",
4521
+ "yargs": "^18.0.0"
4522
+ };
4508
4523
 
4509
4524
  //#endregion
4510
4525
  //#region src/export.ts
@@ -4683,7 +4698,7 @@ function getRunCommand(pm, bin) {
4683
4698
  * Uses appropriate flags to ensure the correct version of @openspecui/web is installed
4684
4699
  */
4685
4700
  function getExecCommand(pm) {
4686
- const webPkgSpec = `@openspecui/web@${version}`;
4701
+ const webPkgSpec = `@openspecui/web@${devDependencies["@openspecui/web"]}`;
4687
4702
  switch (pm) {
4688
4703
  case "bun": return {
4689
4704
  cmd: "bunx",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openspecui",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "OpenSpec UI - Visual interface for spec-driven development",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",