-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 2.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "unplugin-lightningcss",
"version": "0.2.1",
"packageManager": "[email protected]",
"description": "Lightning CSS integration for Vite, Rollup, esbuild, Webpack, Vue CLI, and more.",
"type": "module",
"keywords": [
"unplugin",
"css",
"rollup",
"rolldown",
"vite",
"esbuild",
"webpack",
"rspack",
"farm"
],
"license": "MIT",
"homepage": "https://github.com/unplugin/unplugin-lightningcss#readme",
"bugs": {
"url": "https://github.com/unplugin/unplugin-lightningcss/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-lightningcss.git"
},
"author": "三咲智子 <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./api": {
"require": "./dist/api.cjs",
"import": "./dist/api.js"
},
"./vite": {
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
},
"./rspack": {
"require": "./dist/rspack.cjs",
"import": "./dist/rspack.js"
},
"./rollup": {
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.js"
},
"./rolldown": {
"require": "./dist/rolldown.cjs",
"import": "./dist/rolldown.js"
},
"./esbuild": {
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
},
"./farm": {
"require": "./dist/farm.cjs",
"import": "./dist/farm.js"
},
"./*": [
"./*",
"./*.d.ts"
]
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.4",
"lightningcss": "^1.28.2",
"magic-string": "^0.30.17",
"unplugin": "^2.1.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^4.5.1",
"@sxzz/prettier-config": "^2.0.2",
"@sxzz/test-utils": "^0.3.11",
"@types/node": "^22.10.2",
"@types/rollup-plugin-css-only": "^3.1.3",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"fast-glob": "^3.3.2",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-css-only": "^4.5.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config",
"resolutions": {
"@types/rollup-plugin-css-only>rollup": "latest"
}
}