-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
90 lines (90 loc) · 1.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "untitledui-js",
"version": "2.2.22",
"exports": {
"./react": {
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.mjs",
"require": "./dist/vue/index.js",
"types": "./dist/vue/index.d.ts"
},
"./solid": {
"import": "./dist/solid/index.mjs",
"require": "./dist/solid/index.js",
"types": "./dist/solid/index.d.ts"
},
"./qwik": {
"import": "./dist/qwik/index.mjs",
"require": "./dist/qwik/index.js",
"types": "./dist/qwik/index.d.ts"
}
},
"license": "MIT",
"files": [
"dist",
"package.json",
"LICENSE.md",
"README.md"
],
"keywords": [
"react",
"untitledui",
"inline",
"icons",
"svg",
"design",
"customizable",
"framer",
"motion",
"typescript",
"animation",
"javascript",
"icons library",
"next",
"next",
"vue",
"solid",
"qwik"
],
"repository": {
"type": "git",
"url": "git+https://github.com/techwithmanuel/untitledui-js.git"
},
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@types/react": "^19.0.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"unplugin-vue": "^5.2.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"vue": "^3.0.0",
"solid-js": "^1.0.0",
"@builder.io/qwik": "^1.0.0",
"motion": "^10.0.0 || ^11.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
},
"solid-js": {
"optional": true
},
"@builder.io/qwik": {
"optional": true
},
"motion": {
"optional": true
}
}
}