@skaile/workspace-bridge-vue 0.8.0 → 0.8.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/CHANGELOG.md +6 -0
  2. package/package.json +7 -12
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to `@skaile/workspace-bridge-vue` are documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/).
5
5
 
6
+ ## 0.8.5 — 2026-05-17
7
+
8
+ Migrated into the `skaile-ai/workspaces` monorepo. No API changes.
9
+ The dependency on `@skaile/workspaces` is now declared as `workspace:*`
10
+ (resolved to `^0.8.5` at publish time by Changesets).
11
+
6
12
  ## 0.8.0 — 2026-05-16
7
13
 
8
14
  Initial release as `@skaile/workspace-bridge-vue`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skaile/workspace-bridge-vue",
3
- "version": "0.8.0",
3
+ "version": "0.8.5",
4
4
  "description": "Vue 3.3+ bindings for @skaile/workspaces (useAgentStore, useResourceClient, useSubscribableStore)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,16 +22,12 @@
22
22
  "node": ">=20"
23
23
  },
24
24
  "dependencies": {
25
- "@skaile/workspaces": "^0.8.2"
25
+ "@skaile/workspaces": "workspace:*"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "vue": ">=3.3"
29
29
  },
30
30
  "devDependencies": {
31
- "@biomejs/biome": "^2.4.9",
32
- "tsup": "^8.0.0",
33
- "typescript": "^5.7.0",
34
- "vitest": "^3.2.0",
35
31
  "vue": "^3.5.0"
36
32
  },
37
33
  "scripts": {
@@ -41,18 +37,17 @@
41
37
  "test:watch": "vitest",
42
38
  "format": "biome format --write .",
43
39
  "lint": "biome lint .",
44
- "check": "biome check .",
45
- "prepack": "tsup",
46
- "prepublishOnly": "bun run typecheck && bun run test && bun run check"
40
+ "check": "biome check ."
47
41
  },
48
42
  "publishConfig": {
49
43
  "access": "public"
50
44
  },
51
45
  "repository": {
52
46
  "type": "git",
53
- "url": "git+https://github.com/skaile-ai/workspace-bridge-vue.git"
47
+ "url": "git+https://github.com/skaile-ai/workspaces.git",
48
+ "directory": "packages/bridge-vue"
54
49
  },
55
- "homepage": "https://github.com/skaile-ai/workspace-bridge-vue#readme",
56
- "bugs": "https://github.com/skaile-ai/workspace-bridge-vue/issues",
50
+ "homepage": "https://github.com/skaile-ai/workspaces/tree/main/packages/bridge-vue#readme",
51
+ "bugs": "https://github.com/skaile-ai/workspaces/issues",
57
52
  "license": "Apache-2.0"
58
53
  }