-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "rollup-plugin-lit-tailwindcss",
"version": "0.0.0-development",
"description": "inject tailwindcss class into lit css tag",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rollup -c",
"semantic-release": "semantic-release --branches main",
"test": "ava"
},
"keywords": [
"rollup",
"plugin",
"lit",
"tailwindcss"
],
"author": "mcha",
"license": "MIT",
"peerDependencies": {
"autoprefixer": "^10.2.6",
"postcss": "^8.3.0",
"rollup": "^1.20.0 || ^2.0.0",
"tailwindcss": "^2.1.4"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/pluginutils": "^4.1.0",
"autoprefixer": "^10.2.6",
"ava": "^3.15.0",
"lit": "^2.0.0-rc.2",
"postcss": "^8.3.0",
"rollup": "^2.50.6",
"semantic-release": "^17.4.3",
"tailwindcss": "^2.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mcha-dev/lit-tailwindcss.git"
},
"homepage": "https://github.com/mcha-dev/lit-tailwindcss"
}