-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "@flexpool/ui",
"version": "0.0.19",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"tsc": "tsc",
"build:tsup": "tsup src/index.ts --format esm,cjs --dts-only --minify",
"build": "vite build && yarn build:tsup",
"preview": "vite preview"
},
"dependencies": {
"@tippyjs/react": "^4.2.6",
"@types/styled-components": "^5.1.21",
"copy-to-clipboard": "^3.3.1",
"downshift": "^6.1.7",
"prism-react-renderer": "^1.3.1",
"react-icons": "^4.3.1"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": ">=5"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3",
"tsup": "^5.11.11",
"typescript": "^4.5.4",
"vite": "^2.7.2"
}
}