-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 KB
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
{
"name": "@kodemo/util",
"version": "0.3.2",
"homepage": "https://kodemo.com",
"author": {
"name": "Hakim El Hattab",
"email": "[email protected]",
"web": "https://hakim.se"
},
"license": "MIT",
"files": [
"dist"
],
"module": "./dist/kodemo-util.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/kodemo-util.es.js"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"serve": "vite preview"
},
"dependencies": {
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-popover": "^1.0.2",
"@radix-ui/react-slider": "^1.1.0",
"@radix-ui/react-toast": "^1.1.1",
"@radix-ui/react-tooltip": "^1.0.2",
"color": "^4.2.3"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@honkhonk/vite-plugin-svgr": "^1.1.0",
"@types/color": "^3.0.3",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"typescript": "^4.8.4",
"vite": "4.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6"
}
}