-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 842 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": "@formkit/windicss",
"repository": "https://github.com/formkit/formkit",
"version": "1.0.0-beta.5",
"description": "A FormKit plugin for Tailwind that supplies custom variants based on input state",
"keywords": [
"forms",
"inputs",
"styling",
"css",
"tailwind",
"windicss"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./*": "./dist/*"
},
"contributors": [
"Andrew Boyd <[email protected]>",
"Gustavo Fenilli <[email protected]>"
],
"license": "MIT",
"type": "module",
"peerDependencies": {
"@types/windicss": "^3.0.0",
"windicss": "^3.5.1"
},
"dependencies": {}
}