forked from Temzasse/react-modal-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.69 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
{
"version": "2.2.0",
"license": "MIT",
"name": "react-modal-sheet",
"description": "Flexible bottom sheet component for your React apps",
"author": "Teemu Taskula",
"repository": "https://github.com/Temzasse/react-modal-sheet",
"homepage": "https://temzasse.github.io/react-modal-sheet",
"keywords": [
"react",
"modal",
"bottom-sheet",
"accessibility",
"framer-motion"
],
"main": "dist/index.js",
"module": "dist/react-modal-sheet.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "echo \"Todo fix tests...\"",
"lint": "tsdx lint",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepare": "tsdx build",
"release": "np"
},
"peerDependencies": {
"framer-motion": ">=6",
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"np": {
"yarn": true
},
"devDependencies": {
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"csstype": "3.1.1",
"framer-motion": "10.12.16",
"history": "5.0.0",
"husky": "4.2.5",
"parcel": "2.8.3",
"react": "18.2.0",
"react-aria": "3.25.0",
"react-dom": "18.2.0",
"react-icons": "4.2.0",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0",
"react-stately": "3.23.0",
"react-use": "17.1.1",
"styled-components": "6.0.0-rc.3",
"tsdx": "0.14.1",
"typescript": "5.1.3"
},
"dependencies": {
"@react-aria/utils": "3.17.0"
}
}