forked from tailwindlabs/tailwindcss-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 840 Bytes
/
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": "tlwind-forms",
"version": "0.0.2",
"main": "src/index.js",
"types": "src/index.d.ts",
"license": "MIT",
"repository": "https://github.com/paiameya/tailwindcss-forms",
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"dev": "concurrently \"npm run serve\" \"npm run watch\"",
"serve": "live-server .",
"watch": "npm run build -- -w",
"build": "tailwindcss -o dist/tailwind.css"
},
"peerDependencies": {
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"concurrently": "^5.3.0",
"live-server": "^1.2.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3"
},
"dependencies": {
"mini-svg-data-uri": "^1.2.3"
}
}