-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.32 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
{
"name": "stencil-tailwind",
"version": "0.0.6",
"description": "A TailwindCSS Plugin for Stencil",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"keywords": [
"stencil",
"tailwind"
],
"scripts": {
"build": "rollup -c && cp ./src/app.css ./dist/",
"test": "ava",
"debug": "export DEBUG=* DEBUG_COLORS=true FORCE_COLOR=1 && npm run build && ava"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"rollup": "^2.10.2",
"typescript": ">= 2.1.0"
},
"dependencies": {
"acorn-walk": "^8.0.2",
"chalk": "^4.0.0",
"debug": "^4.3.1",
"magic-string": "^0.25.7",
"postcss": "^8.2.6",
"tailwindcss": "^2.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"@types/acorn": "^4.0.5",
"@types/debug": "^4.1.5",
"ava": "^3.15.0",
"rollup": "^2.40.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.2.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"!**/fixtures/**",
"!**/helpers/**",
"!**/recipes/**",
"!**/types.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrowlingson/stencil-tailwind.git"
},
"module": "dist/index.es.js",
"types": "types/index.d.ts"
}