-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "zero-dependency-bottom-sheet",
"version": "2.0.4",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/main.d.ts",
"description": "A zero-dependency, customizable React bottom sheet component with drag gestures, snap points, and TypeScript support",
"keywords": [
"react",
"bottom-sheet",
"modal",
"drawer",
"typescript",
"drag-gesture",
"snap-points",
"zero-dependency"
],
"author": "Ahmad Ghorbani",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ahmad-Ghorbani/zero-dependency-bottom-sheet"
},
"files": [
"dist",
"dist/*.d.ts"
],
"scripts": {
"build": "rollup -c"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@types/react": "^18.2.0",
"postcss": "^8.4.49",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.60.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.0",
"tslib": "^2.3.0",
"typescript": "^4.4.0"
},
"dependencies": {
"user": "^0.0.0"
}
}