-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
66 lines (66 loc) · 1.47 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
{
"name": "posthtml-minify-classnames",
"version": "1.0.0-alpha.0",
"description": "PostHTML plugin for minifying CSS selectors",
"author": "Simon Laroche <hi@simon.lc> (https://simon.lc)",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"main": "dist/index.cjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"dev": "vitest",
"build": "unbuild",
"release": "npx np",
"prepack": "unbuild",
"pretest": "npm run lint",
"test": "vitest run --coverage",
"lint": "biome lint ./lib ./test"
},
"homepage": "https://github.com/posthtml/posthtml-minify-classnames",
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-minify-classnames.git"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-minify-classnames/issues"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"uglify",
"minify",
"mangle",
"compress",
"classnames",
"class",
"emoji"
],
"dependencies": {
"postcss-safe-parser": "7.0.1",
"postcss-selector-parser": "7.0.0"
},
"peerDependencies": {
"posthtml": "^0.16.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.5",
"posthtml": "^0.16.6",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.20"
}
}