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
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "unplugin-jsx-string",
"version": "0.10.0",
"packageManager": "pnpm@10.16.1",
"packageManager": "pnpm@10.24.0",
"description": "Converts JSX to HTML strings at compile time.",
"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",
"jsx",
"tsx",
Expand All @@ -15,22 +15,22 @@
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-jsx-string#readme",
"bugs": {

Check failure on line 18 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-jsx-string/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-jsx-string.git"
},
"author": "Kevin Deng <sxzz@sxzz.moe>",

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. 'author' should be before 'license'
"funding": "https://github.com/sponsors/sxzz",

Check failure on line 26 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 27 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.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {

Check failure on line 33 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.js",
"./api": "./dist/api.js",
"./esbuild": "./dist/esbuild.js",
Expand Down Expand Up @@ -64,33 +64,33 @@
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@babel/parser": "^7.28.4",
"@babel/types": "^7.28.4",
"@babel/parser": "^7.28.5",
"@babel/types": "^7.28.5",
"entities": "^7.0.0",
"estree-walker": "^3.0.3",
"jsesc": "^3.1.0",
"magic-string": "^0.30.19",
"unplugin": "^2.3.10",
"unplugin-utils": "^0.3.0"
"magic-string": "^0.30.21",
"unplugin": "^2.3.11",
"unplugin-utils": "^0.3.1"
},
"devDependencies": {
"@sxzz/eslint-config": "^7.1.4",
"@sxzz/prettier-config": "^2.2.4",
"@sxzz/eslint-config": "^7.4.1",
"@sxzz/prettier-config": "^2.2.6",
"@types/benchmark": "^2.1.5",
"@types/jsesc": "^3.0.3",
"@types/node": "^24.5.0",
"@types/react": "^19.1.13",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"benchmark": "^2.1.4",
"bumpp": "^10.2.3",
"eslint": "^9.35.0",
"prettier": "^3.6.2",
"tsdown": "^0.15.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"bumpp": "^10.3.2",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"tsdown": "^0.17.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^3.2.4"
},
"engines": {

Check failure on line 93 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.19.0"
},
"prettier": "@sxzz/prettier-config",
Expand Down
20 changes: 10 additions & 10 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@unocss/reset": "^66.5.1",
"@unocss/reset": "^66.5.10",
"@vueuse/core": "^13.9.0",
"unplugin-jsx-string": "workspace:*",
"vue": "^3.5.21"
"vue": "^3.5.25"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.13",
"@vitejs/plugin-vue": "^6.0.1",
"@vue-macros/reactivity-transform": "^3.0.0-rc.0",
"unocss": "^66.5.1",
"unplugin-auto-import": "^20.1.0",
"unplugin-vue-components": "^29.0.0",
"vite": "^7.1.5",
"vue-tsc": "^3.0.7"
"@iconify-json/carbon": "^1.2.15",
"@vitejs/plugin-vue": "^6.0.2",
"@vue-macros/reactivity-transform": "^3.1.1",
"unocss": "^66.5.10",
"unplugin-auto-import": "^20.3.0",
"unplugin-vue-components": "^29.2.0",
"vite": "^7.2.7",
"vue-tsc": "^3.1.7"
}
}
Loading
Loading