-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 KB
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
{
"name": "vite-plugin-optimize-css-modules",
"version": "1.4.0",
"description": "Mangles the classnames generated by postcss-modules in vite",
"type": "module",
"packageManager": "pnpm@10.27.0",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"vite",
"vite-plugin",
"css-modules",
"css",
"minify"
],
"author": "Simon Reinisch <trash@reinisch.io>",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build && tsc --emitDeclarationOnly",
"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": "^8.0.0 || ^7.0.0 || ^6.0.0 || ^5.0.0 || ^4.0.0 || ^3.0.0 || ^2.0.0"
},
"devDependencies": {
"@types/node": "24.12.0",
"brotli-size": "4.0.0",
"gzip-size": "7.0.0",
"pretty-bytes": "7.1.0",
"typescript": "6.0.2",
"vite": "8.0.3"
}
}