Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "unplugin-vue-named-export",
"version": "0.9.2",
"packageManager": "pnpm@10.23.0",
"packageManager": "pnpm@10.24.0",
"description": "Named export for Vue SFC.",
"type": "module",

Check failure on line 6 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'type' should be before 'version'
"keywords": [

Check failure on line 7 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'keywords' should be after 'repository'
"unplugin",
"rollup",
"vite",
Expand All @@ -13,22 +13,22 @@
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-vue-named-export#readme",
"bugs": {

Check failure on line 16 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'bugs' should be after 'repository'
"url": "https://github.com/unplugin/unplugin-vue-named-export/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue-named-export.git"
},
"author": "Kevin Deng <sxzz@sxzz.moe>",

Check failure on line 23 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'author' should be before 'license'
"funding": "https://github.com/sponsors/sxzz",

Check failure on line 24 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'funding' should be before 'homepage'
"files": [

Check failure on line 25 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'files' should be after 'typesVersions'
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {

Check failure on line 31 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'exports' should be before 'main'
".": "./dist/index.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./farm": "./dist/farm.mjs",
Expand Down Expand Up @@ -62,33 +62,33 @@
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@vue/language-core": "^3.1.4",
"@vue/language-core": "^3.1.6",
"ast-kit": "^2.2.0",
"magic-string-ast": "^1.0.3",
"muggle-string": "^0.4.1",
"unplugin": "^2.3.11"
},
"devDependencies": {
"@babel/types": "^7.28.5",
"@sxzz/eslint-config": "^7.3.2",
"@sxzz/prettier-config": "^2.2.5",
"@sxzz/eslint-config": "^7.4.1",
"@sxzz/prettier-config": "^2.2.6",
"@sxzz/test-utils": "^0.5.13",
"@types/node": "^24.10.1",
"bumpp": "^10.3.1",
"bumpp": "^10.3.2",
"change-case": "^5.4.4",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"tsdown": "^0.16.6",
"tsx": "^4.20.6",
"prettier": "^3.7.4",
"tsdown": "^0.17.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unplugin-oxc": "^0.5.5",
"unplugin-vue": "^7.0.8",
"vite": "^7.2.4",
"vitest": "^4.0.13",
"vue": "^3.5.24",
"vue-tsc": "^3.1.4"
"unplugin-vue": "^7.1.0",
"vite": "^7.2.6",
"vitest": "^4.0.15",
"vue": "^3.5.25",
"vue-tsc": "^3.1.6"
},
"engines": {

Check failure on line 91 in package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'engines' should be before 'scripts'
"node": ">=20.18.0"
},
"prettier": "@sxzz/prettier-config",
Expand Down
8 changes: 4 additions & 4 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "playground",
"version": "0.0.0",
"private": true,
"type": "module",

Check failure on line 5 in playground/package.json

View workflow job for this annotation

GitHub Actions / unit-test / lint

Expected object keys to be in specified order. 'type' should be before 'version'
"scripts": {
"dev": "vite",
"build": "vite build",
Expand All @@ -10,14 +10,14 @@
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.5.24"
"vue": "^3.5.25"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.2",
"@vue/tsconfig": "^0.8.1",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vue-tsc": "^3.1.4"
"vite": "^7.2.6",
"vue-tsc": "^3.1.6"
}
}
Loading
Loading