-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.88 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
{
"name": "rc-unmodal",
"version": "1.0.8",
"description": "A react component unified modal",
"files": [
"*.css",
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./style.css": "./style.css"
},
"scripts": {
"type-check": "tsc --noEmit",
"build": "rollup -c --bundleConfigAsCjs",
"dev": "bunchee --watch",
"dev:website": "turbo run dev --filter=website...",
"format": "prettier --write ."
},
"keywords": [
"react",
"modal"
],
"author": "hunghg255 <giahung197bg@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/rc-unmodal.git"
},
"bugs": {
"url": "https://github.com/hunghg255/rc-unmodal/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/node": "20.5.7",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.18",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"turbo": "1.6",
"typescript": "5.2.2"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0"
},
"packageManager": "pnpm@6.32.11",
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"classnames": "^2.5.1",
"framer-motion": "^11.2.6",
"vaul": "^0.9.1"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}