-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.36 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
{
"name": "tailwindcss-layered-box-shadow",
"version": "0.0.2",
"description": "A plugin that provides advanced and more realistic layered box shadows for tailwindcss.",
"main": "src/index.js",
"author": "Fabian Bentz Webentwicklung <[email protected]>",
"keywords": [
"tailwind",
"tailwindcss",
"tailwindcss-plugin",
"tailwind-utility",
"tailwind-variants",
"tailwidncss-box-shadow",
"box-shadow",
"layered-box-shadow"
],
"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 && npm run demo:build && gh-pages -d demo",
"prepublishOnly": "node scripts/build.js",
"release": "release-it --no-git.requireUpstream"
},
"peerDependencies": {
"tailwindcss": ">=3.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"clean-css": "^5.3.1",
"gh-pages": "^4.0.0",
"jest": "^29.0.1",
"jest-matcher-css": "^1.1.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
},
"dependencies": {
"release-it": "^15.4.1"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
}
}