@wherabouts/vue-ui 0.1.1 → 0.3.0

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 CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@wherabouts/vue-ui",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "description": "Production-ready Vue 3 components for Wherabouts SDK — address autocomplete, geocoding, and form fields with accessibility and customization.",
6
- "license": "UNLICENSED",
6
+ "license": "MIT",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -16,27 +16,28 @@
16
16
  "./styles.css": "./dist/styles.css"
17
17
  },
18
18
  "files": [
19
- "dist"
19
+ "dist",
20
+ "LICENSE"
20
21
  ],
21
- "scripts": {
22
- "build": "vite build && node scripts/build-css.mjs",
23
- "dev": "vite build --watch",
24
- "test": "vitest run"
25
- },
26
22
  "dependencies": {
27
23
  "clsx": "^2.1.1",
28
24
  "tailwind-merge": "^2.3.0"
29
25
  },
30
26
  "peerDependencies": {
31
27
  "vue": ">=3.0.0",
32
- "@wherabouts/sdk": ">=0.4.2"
28
+ "@wherabouts/sdk": ">=0.5.0"
33
29
  },
34
30
  "devDependencies": {
35
31
  "@vitejs/plugin-vue": "^5.1.4",
36
- "@wherabouts/sdk": "workspace:*",
37
32
  "typescript": "^5.4.4",
38
33
  "vite": "^5.1.6",
39
34
  "vue": "^3.4.0",
40
- "vitest": "^1.2.0"
35
+ "vitest": "^1.2.0",
36
+ "@wherabouts/sdk": "0.6.0"
37
+ },
38
+ "scripts": {
39
+ "build": "vite build && node scripts/build-css.mjs",
40
+ "dev": "vite build --watch",
41
+ "test": "vitest run"
41
42
  }
42
- }
43
+ }