@unhead/vue 2.0.0-rc.1 → 2.0.0-rc.3

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/client.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './dist/client'
1
+ export * from './dist/client.js'
package/legacy.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './dist/legacy'
1
+ export * from './dist/legacy.js'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/vue",
3
3
  "type": "module",
4
- "version": "2.0.0-rc.1",
4
+ "version": "2.0.0-rc.3",
5
5
  "description": "Full-stack <head> manager built for Vue.",
6
6
  "author": "Harlan Wilton <harlan@harlanzw.com>",
7
7
  "license": "MIT",
@@ -23,39 +23,39 @@
23
23
  "exports": {
24
24
  ".": {
25
25
  "types": "./dist/index.d.ts",
26
- "import": "./dist/index.mjs"
26
+ "default": "./dist/index.mjs"
27
27
  },
28
28
  "./components": {
29
29
  "types": "./dist/components.d.ts",
30
- "import": "./dist/components.mjs"
30
+ "default": "./dist/components.mjs"
31
31
  },
32
32
  "./server": {
33
33
  "types": "./dist/server.d.ts",
34
- "import": "./dist/server.mjs"
34
+ "default": "./dist/server.mjs"
35
35
  },
36
36
  "./client": {
37
37
  "types": "./dist/client.d.ts",
38
- "import": "./dist/client.mjs"
38
+ "default": "./dist/client.mjs"
39
39
  },
40
40
  "./types": {
41
41
  "types": "./dist/types.d.ts",
42
- "import": "./dist/types.mjs"
42
+ "default": "./dist/types.mjs"
43
43
  },
44
44
  "./legacy": {
45
45
  "types": "./dist/legacy.d.ts",
46
- "import": "./dist/legacy.mjs"
46
+ "default": "./dist/legacy.mjs"
47
47
  },
48
48
  "./plugins": {
49
49
  "types": "./dist/plugins.d.ts",
50
- "import": "./dist/plugins.mjs"
50
+ "default": "./dist/plugins.mjs"
51
51
  },
52
52
  "./utils": {
53
53
  "types": "./dist/utils.d.ts",
54
- "import": "./dist/utils.mjs"
54
+ "default": "./dist/utils.mjs"
55
55
  },
56
56
  "./scripts": {
57
57
  "types": "./dist/scripts.d.ts",
58
- "import": "./dist/scripts.mjs"
58
+ "default": "./dist/scripts.mjs"
59
59
  }
60
60
  },
61
61
  "main": "dist/index.mjs",
@@ -90,14 +90,8 @@
90
90
  }
91
91
  },
92
92
  "files": [
93
- "client.d.ts",
94
- "dist",
95
- "legacy.d.ts",
96
- "plugins.d.ts",
97
- "scripts.d.ts",
98
- "server.d.ts",
99
- "types.d.ts",
100
- "utils.d.ts"
93
+ "*.d.ts",
94
+ "dist"
101
95
  ],
102
96
  "peerDependencies": {
103
97
  "vue": ">=3.5.13"
@@ -109,10 +103,14 @@
109
103
  },
110
104
  "dependencies": {
111
105
  "hookable": "^5.5.3",
112
- "unhead": "2.0.0-rc.1"
106
+ "unhead": "2.0.0-rc.3"
107
+ },
108
+ "devDependencies": {
109
+ "vue": "^3.5.13"
113
110
  },
114
111
  "scripts": {
115
- "build": "unbuild .",
116
- "stub": "unbuild . --stub"
112
+ "build": "unbuild",
113
+ "stub": "unbuild --stub",
114
+ "test:attw": "attw --pack"
117
115
  }
118
116
  }
package/scripts.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './dist/scripts'