-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
57
58
59
60
{
"name": "posthtml-postcss-merge-longhand",
"description": "Merge longhand inline CSS properties into shorthand with PostCSS.",
"version": "3.1.2",
"license": "MIT",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"bugs": "https://github.com/posthtml/posthtml-postcss-merge-longhand/issues",
"homepage": "https://github.com/posthtml/posthtml-postcss-merge-longhand",
"repository": "posthtml/posthtml-postcss-merge-longhand",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "./dist/index.mjs",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vitest",
"release": "np",
"build": "unbuild",
"prepack": "unbuild",
"lint": "biome lint ./lib ./test",
"test": "vitest run --coverage",
"pretest": "npm run lint"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"postcss",
"inline-styles",
"inline-css",
"merge-styles",
"merge-css",
"longhand",
"shorthand"
],
"dependencies": {
"postcss": "^8.1.10",
"postcss-merge-longhand": "^7.0.0",
"postcss-safe-parser": "^7.0.0",
"posthtml": "^0.16.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.3",
"unbuild": "^2.0.0",
"vitest": "^2.0.3"
}
}