@neowit/orbit-vue 0.7.0 → 0.7.2

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 (3) hide show
  1. package/dist/orbit.cjs +9 -9
  2. package/dist/orbit.js +2673 -2481
  3. package/package.json +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neowit/orbit-vue",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "Orbit Design System - Vue 3 Components",
5
5
  "type": "module",
6
6
  "main": "./dist/orbit.cjs",
@@ -18,10 +18,14 @@
18
18
  "files": [
19
19
  "dist"
20
20
  ],
21
+ "scripts": {
22
+ "build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist",
23
+ "dev": "vite build --watch"
24
+ },
21
25
  "dependencies": {
22
- "@phosphor-icons/vue": "^2.2.1",
23
- "@neowit/orbit-icons": "0.3.1",
24
- "@neowit/orbit-tokens": "0.3.1"
26
+ "@neowit/orbit-icons": "workspace:*",
27
+ "@neowit/orbit-tokens": "workspace:*",
28
+ "@phosphor-icons/vue": "^2.2.1"
25
29
  },
26
30
  "devDependencies": {
27
31
  "@testing-library/vue": "^8.1.0",
@@ -40,9 +44,5 @@
40
44
  "@nuxt/kit": {
41
45
  "optional": true
42
46
  }
43
- },
44
- "scripts": {
45
- "build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist",
46
- "dev": "vite build --watch"
47
47
  }
48
- }
48
+ }