Skip to content

Commit c491cae

Browse files
committed
chore: upgrade deps
1 parent e39ff6f commit c491cae

File tree

6 files changed

+1495
-1842
lines changed

6 files changed

+1495
-1842
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ module.exports = {
8888
Use pascal case named exports in Vue SFC.
8989

9090
```ts
91-
import { MyFooter } from './my_footer.vue'
9291
import { MyCard } from './my-card.vue'
92+
import { MyFooter } from './my_footer.vue'
9393
import { MyComponent } from './MyComponent.vue'
9494
```
9595

package.json

Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,27 @@
11
{
22
"name": "unplugin-vue-named-export",
3+
"type": "module",
34
"version": "0.9.2",
4-
"packageManager": "pnpm@10.23.0",
5+
"packageManager": "pnpm@10.26.0",
56
"description": "Named export for Vue SFC.",
6-
"type": "module",
7-
"keywords": [
8-
"unplugin",
9-
"rollup",
10-
"vite",
11-
"esbuild",
12-
"webpack"
13-
],
7+
"author": "Kevin Deng <sxzz@sxzz.moe>",
148
"license": "MIT",
9+
"funding": "https://github.com/sponsors/sxzz",
1510
"homepage": "https://github.com/unplugin/unplugin-vue-named-export#readme",
16-
"bugs": {
17-
"url": "https://github.com/unplugin/unplugin-vue-named-export/issues"
18-
},
1911
"repository": {
2012
"type": "git",
2113
"url": "git+https://github.com/unplugin/unplugin-vue-named-export.git"
2214
},
23-
"author": "Kevin Deng <sxzz@sxzz.moe>",
24-
"funding": "https://github.com/sponsors/sxzz",
25-
"files": [
26-
"dist"
15+
"bugs": {
16+
"url": "https://github.com/unplugin/unplugin-vue-named-export/issues"
17+
},
18+
"keywords": [
19+
"unplugin",
20+
"rollup",
21+
"vite",
22+
"esbuild",
23+
"webpack"
2724
],
28-
"main": "./dist/index.mjs",
29-
"module": "./dist/index.mjs",
30-
"types": "./dist/index.d.mts",
3125
"exports": {
3226
".": "./dist/index.mjs",
3327
"./esbuild": "./dist/esbuild.mjs",
@@ -40,6 +34,9 @@
4034
"./webpack": "./dist/webpack.mjs",
4135
"./package.json": "./package.json"
4236
},
37+
"main": "./dist/index.mjs",
38+
"module": "./dist/index.mjs",
39+
"types": "./dist/index.d.mts",
4340
"typesVersions": {
4441
"*": {
4542
"*": [
@@ -48,9 +45,15 @@
4845
]
4946
}
5047
},
48+
"files": [
49+
"dist"
50+
],
5151
"publishConfig": {
5252
"access": "public"
5353
},
54+
"engines": {
55+
"node": ">=20.19.0"
56+
},
5457
"scripts": {
5558
"lint": "eslint --cache .",
5659
"lint:fix": "pnpm run lint --fix",
@@ -62,38 +65,37 @@
6265
"prepublishOnly": "pnpm run build"
6366
},
6467
"dependencies": {
65-
"@vue/language-core": "^3.1.4",
68+
"@vue/language-core": "^3.1.8",
6669
"ast-kit": "^2.2.0",
6770
"magic-string-ast": "^1.0.3",
6871
"muggle-string": "^0.4.1",
6972
"unplugin": "^2.3.11"
7073
},
7174
"devDependencies": {
7275
"@babel/types": "^7.28.5",
73-
"@sxzz/eslint-config": "^7.3.2",
74-
"@sxzz/prettier-config": "^2.2.5",
75-
"@sxzz/test-utils": "^0.5.13",
76-
"@types/node": "^24.10.1",
77-
"bumpp": "^10.3.1",
76+
"@sxzz/eslint-config": "^7.4.3",
77+
"@sxzz/prettier-config": "^2.2.6",
78+
"@sxzz/test-utils": "^0.5.14",
79+
"@types/node": "^25.0.2",
80+
"bumpp": "^10.3.2",
7881
"change-case": "^5.4.4",
79-
"eslint": "^9.39.1",
80-
"prettier": "^3.6.2",
81-
"tsdown": "^0.16.6",
82-
"tsx": "^4.20.6",
82+
"eslint": "^9.39.2",
83+
"prettier": "^3.7.4",
84+
"tsdown": "^0.18.0",
8385
"typescript": "^5.9.3",
84-
"unplugin-oxc": "^0.5.5",
85-
"unplugin-vue": "^7.0.8",
86-
"vite": "^7.2.4",
87-
"vitest": "^4.0.13",
88-
"vue": "^3.5.24",
89-
"vue-tsc": "^3.1.4"
90-
},
91-
"engines": {
92-
"node": ">=20.18.0"
86+
"unplugin-oxc": "^0.5.6",
87+
"unplugin-vue": "^7.1.0",
88+
"vite": "^7.3.0",
89+
"vitest": "^4.0.15",
90+
"vue": "^3.5.25",
91+
"vue-tsc": "^3.1.8"
9392
},
9493
"prettier": "@sxzz/prettier-config",
9594
"tsdown": {
9695
"entry": "./src/*.ts",
97-
"exports": true
96+
"exports": true,
97+
"inlineOnly": [
98+
"change-case"
99+
]
98100
}
99101
}

playground/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "playground",
3+
"type": "module",
34
"version": "0.0.0",
45
"private": true,
5-
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview",
1010
"typecheck": "vue-tsc --noEmit"
1111
},
1212
"dependencies": {
13-
"vue": "^3.5.24"
13+
"vue": "^3.5.25"
1414
},
1515
"devDependencies": {
16-
"@vitejs/plugin-vue": "^6.0.2",
16+
"@vitejs/plugin-vue": "^6.0.3",
1717
"@vue/tsconfig": "^0.8.1",
18-
"tsx": "^4.20.6",
18+
"tsx": "^4.21.0",
1919
"typescript": "~5.9.3",
20-
"vite": "^7.2.4",
21-
"vue-tsc": "^3.1.4"
20+
"vite": "^7.3.0",
21+
"vue-tsc": "^3.1.8"
2222
}
2323
}

0 commit comments

Comments
 (0)