Skip to content

Commit c4e910a

Browse files
committed
chore: upgrade deps
1 parent 3f5ec88 commit c4e910a

5 files changed

Lines changed: 1346 additions & 1863 deletions

File tree

package.json

Lines changed: 47 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
{
22
"name": "unplugin-lightningcss",
3+
"type": "module",
34
"version": "0.4.3",
4-
"packageManager": "pnpm@10.17.1",
5+
"packageManager": "pnpm@10.26.1",
56
"description": "Lightning CSS integration for Vite, Rollup, esbuild, Webpack, Vue CLI, and more.",
6-
"type": "module",
7+
"author": "Kevin Deng <sxzz@sxzz.moe>",
8+
"license": "MIT",
9+
"funding": "https://github.com/sponsors/sxzz",
10+
"homepage": "https://github.com/unplugin/unplugin-lightningcss#readme",
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/unplugin/unplugin-lightningcss.git"
14+
},
15+
"bugs": {
16+
"url": "https://github.com/unplugin/unplugin-lightningcss/issues"
17+
},
718
"keywords": [
819
"unplugin",
920
"css",
@@ -15,35 +26,21 @@
1526
"rspack",
1627
"farm"
1728
],
18-
"license": "MIT",
19-
"homepage": "https://github.com/unplugin/unplugin-lightningcss#readme",
20-
"bugs": {
21-
"url": "https://github.com/unplugin/unplugin-lightningcss/issues"
22-
},
23-
"repository": {
24-
"type": "git",
25-
"url": "git+https://github.com/unplugin/unplugin-lightningcss.git"
26-
},
27-
"author": "Kevin Deng <sxzz@sxzz.moe>",
28-
"funding": "https://github.com/sponsors/sxzz",
29-
"files": [
30-
"dist"
31-
],
32-
"main": "./dist/index.js",
33-
"module": "./dist/index.js",
34-
"types": "./dist/index.d.ts",
3529
"exports": {
36-
".": "./dist/index.js",
37-
"./api": "./dist/api.js",
38-
"./vite": "./dist/vite.js",
39-
"./webpack": "./dist/webpack.js",
40-
"./rspack": "./dist/rspack.js",
41-
"./rollup": "./dist/rollup.js",
42-
"./rolldown": "./dist/rolldown.js",
43-
"./esbuild": "./dist/esbuild.js",
44-
"./farm": "./dist/farm.js",
30+
".": "./dist/index.mjs",
31+
"./api": "./dist/api.mjs",
32+
"./esbuild": "./dist/esbuild.mjs",
33+
"./farm": "./dist/farm.mjs",
34+
"./rolldown": "./dist/rolldown.mjs",
35+
"./rollup": "./dist/rollup.mjs",
36+
"./rspack": "./dist/rspack.mjs",
37+
"./vite": "./dist/vite.mjs",
38+
"./webpack": "./dist/webpack.mjs",
4539
"./package.json": "./package.json"
4640
},
41+
"main": "./dist/index.mjs",
42+
"module": "./dist/index.mjs",
43+
"types": "./dist/index.d.mts",
4744
"typesVersions": {
4845
"*": {
4946
"*": [
@@ -52,9 +49,15 @@
5249
]
5350
}
5451
},
52+
"files": [
53+
"dist"
54+
],
5555
"publishConfig": {
5656
"access": "public"
5757
},
58+
"engines": {
59+
"node": ">=20.19.0"
60+
},
5861
"scripts": {
5962
"lint": "eslint --cache .",
6063
"lint:fix": "pnpm run lint --fix",
@@ -66,31 +69,26 @@
6669
"prepublishOnly": "pnpm run build"
6770
},
6871
"dependencies": {
69-
"lightningcss": "^1.30.1",
70-
"magic-string": "^0.30.19",
71-
"unplugin": "^2.3.10"
72+
"lightningcss": "^1.30.2",
73+
"magic-string": "^0.30.21",
74+
"unplugin": "^2.3.11"
7275
},
7376
"devDependencies": {
74-
"@sxzz/eslint-config": "^7.2.5",
75-
"@sxzz/prettier-config": "^2.2.4",
76-
"@sxzz/test-utils": "^0.5.11",
77-
"@types/node": "^24.5.2",
77+
"@sxzz/eslint-config": "^7.4.3",
78+
"@sxzz/prettier-config": "^2.2.6",
79+
"@sxzz/test-utils": "^0.5.15",
80+
"@types/node": "^25.0.3",
7881
"@types/rollup-plugin-css-only": "^3.1.3",
79-
"bumpp": "^10.2.3",
80-
"eslint": "^9.36.0",
81-
"fast-glob": "^3.3.3",
82-
"prettier": "^3.6.2",
83-
"rollup": "^4.52.2",
82+
"bumpp": "^10.3.2",
83+
"eslint": "^9.39.2",
84+
"prettier": "^3.7.4",
85+
"rollup": "^4.54.0",
8486
"rollup-plugin-css-only": "^4.5.5",
85-
"tsdown": "^0.15.4",
86-
"tsx": "^4.20.6",
87-
"typescript": "^5.9.2",
88-
"vite": "^7.1.7",
89-
"vitest": "^3.2.4",
90-
"vue": "^3.5.22"
91-
},
92-
"engines": {
93-
"node": ">=20.18.0"
87+
"tsdown": "^0.18.2",
88+
"typescript": "^5.9.3",
89+
"vite": "^7.3.0",
90+
"vitest": "^4.0.16",
91+
"vue": "^3.5.26"
9492
},
9593
"resolutions": {
9694
"@types/rollup-plugin-css-only>rollup": "-"

0 commit comments

Comments
 (0)