forked from clqu/void-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@voidpkg/react-ui",
"version": "1.0.1",
"description": "Responsive and flexible React UI components built with Tailwind CSS and Framer Motion.",
"scripts": {
"build": "tsup src/index.ts --dts"
},
"publishConfig": {
"access": "public"
},
"tsup": {
"minify": true,
"clean": true,
"skipNodeModulesBundle": true
},
"keywords": [
"react",
"component",
"components",
"tailwind",
"tailwindcss",
"ui",
"react-ui"
],
"authors": [
"clqu <[email protected]>",
"Void Development <[email protected]>"
],
"license": "MIT",
"dependencies": {
"styled-components": "^5.3.6",
"swr": "^2.0.0",
"axios": "^1.2.2",
"framer-motion": "^8.2.4"
},
"devDependencies": {
"@swc/core": "^1.3.25",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "^5.1.26",
"axios": "^1.2.2",
"framer-motion": "^8.2.4",
"postcss": "^8.4.20",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"styled-components": "^5.3.6",
"swr": "^2.0.0",
"tailwindcss": ">=3.1.8",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"tailwindcss": ">=3.1.8",
"autoprefixer": ">=10.4.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
]
}