-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
96 lines (96 loc) · 2.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"version": "3.3.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"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "tsup --watch --onSuccess \"yalc publish --push\"",
"build": "tsup",
"build:verify": "attw --pack .",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"lint": "eslint src/* --fix --max-warnings=0",
"link": "yalc publish && npm run link:example && npm run link:example-ssr",
"link:example": "cd example && yalc add react-modal-sheet && npm i",
"link:example-ssr": "cd example-ssr && yalc add react-modal-sheet && npm i",
"test": "vitest run",
"typecheck": "tsc --noEmit --skipLibCheck",
"release": "npm run build && npm run build:verify && np"
},
"peerDependencies": {
"framer-motion": ">=10",
"react": ">=16"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.3",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@vitejs/plugin-react": "4.1.0",
"csstype": "3.1.1",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard-with-typescript": "39.1.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"framer-motion": "11.11.10",
"history": "5.0.0",
"husky": "4.2.5",
"jsdom": "22.1.0",
"parcel": "2.12.0",
"prettier": "3.0.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",
"styled-components": "6.0.8",
"tsup": "8.0.2",
"typescript": "5.6.3",
"vite": "4.4.11",
"vitest": "0.34.6"
},
"engines": {
"node": ">=18"
},
"husky": {
"hooks": {
"pre-commit": "echo \"Todo fix husky...\""
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}