-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "tailwindcss-container-query",
"version": "1.1.0",
"description": "A plugin that provides CSS Container Queries.",
"main": "src/index.js",
"author": "Doğukan Çavuş <[email protected]>",
"keywords": [
"tailwind",
"tailwindcss",
"tailwindcss-plugin",
"tailwind-utility",
"tailwind-variants",
"container-query",
"tailwidncss-container-query"
],
"license": "MIT",
"scripts": {
"test": "jest",
"demo:dev": "npx tailwindcss -i ./demo/style.css -o ./demo/output.css --watch",
"demo:build": "npx tailwindcss -i ./demo/style.css -o ./demo/output.css",
"demo:deploy": "rm -rf demo/output.css && yarn run demo:build && gh-pages -d demo",
"prepublishOnly": "node scripts/build.js"
},
"peerDependencies": {
"tailwindcss": ">=3.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"clean-css": "^5.3.0",
"gh-pages": "^3.2.3",
"jest": "^28.1.1",
"jest-matcher-css": "^1.1.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.4"
}
}