-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "vite-plugin-optimize-css-modules",
"version": "1.2.0",
"description": "Mangles the classnames generated by postcss-modules in vite",
"type": "module",
"packageManager": "pnpm@9.11.0",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"vite",
"vite-plugin",
"css-modules",
"css",
"minify"
],
"author": "Simon Reinisch <trash@reinisch.io>",
"license": "MIT",
"scripts": {
"dev": "rollup -c rollup.config.js --watch",
"build": "rollup -c rollup.config.js",
"benchmark": "node benchmarks/main.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonwep/vite-plugin-optimize-css-modules.git"
},
"bugs": {
"url": "https://github.com/simonwep/vite-plugin-optimize-css-modules/issues"
},
"homepage": "https://github.com/simonwep/vite-plugin-optimize-css-modules",
"peerDependencies": {
"vite": "^6.0.0 || ^5.0.0 || ^4.0.0 || ^3.0.0 || ^2.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "12.1.1",
"@types/node": "22.10.2",
"brotli-size": "4.0.0",
"gzip-size": "7.0.0",
"pretty-bytes": "6.1.1",
"rollup": "4.28.1",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vite": "6.0.6"
}
}