-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "tailwind-css-shading-buttons",
"version": "1.0.0",
"description": "A simple tool to make your own sharing buttons based on Tailwind CSS without any JavaScript dependency, just plain HTML.",
"source": "src/index.html",
"watch": {
"build:html": {
"patterns": [
"src"
],
"extensions": "html"
}
},
"scripts": {
"dev": "rm -rf dist && parcel src/index.html src/sitemap.xml --open",
"build": "rm -rf dist && parcel build src/index.html src/sitemap.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hayatbiralem/tailwind-css-shading-buttons.git"
},
"author": "Ömür Yanıkoğlu",
"license": "ISC",
"bugs": {
"url": "https://github.com/hayatbiralem/tailwind-css-shading-buttons/issues"
},
"homepage": "https://github.com/hayatbiralem/tailwind-css-shading-buttons#readme",
"devDependencies": {
"@parcel/packager-xml": "2.6.0",
"@parcel/transformer-xml": "2.6.0",
"autoprefixer": "^10.4.4",
"parcel": "^2.3.2",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23"
},
"dependencies": {
"parcel-namer-rewrite": "^2.0.0-rc.2"
},
"parcel-namer-rewrite": {
"chain": "@parcel/namer-default",
"rules": {
"sitemap.xml": "sitemap.xml"
}
}
}