-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "inline-html-styles",
"version": "1.1.0",
"description": "Inline (Tailwind) CSS stylesheets into HTML style attributes.",
"author": "RayJason <https://github.com/RayJason>",
"license": "MIT",
"homepage": "https://github.com/RayJason/inline-html-styles",
"repository": "RayJason/inline-html-styles",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc && terser dist/index.js -o dist/index.js --compress --mangle",
"test": "vitest"
},
"keywords": [
"inline-style",
"css",
"html",
"email",
"esnext",
"bun",
"juice",
"postcss",
"postcss-calc",
"typescript",
"vitest",
"inline-css"
],
"dependencies": {
"juice": "^9.1.0",
"postcss": "^8.4.30",
"postcss-calc": "^9.0.1"
},
"devDependencies": {
"terser": "^5.20.0",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
}
}