-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
49
50
51
52
53
54
55
56
57
{
"name": "@sheet-ui/sheet",
"version": "1.1.1",
"author": "henryzhu.eth",
"license": "MIT",
"description": "A 📄 sheet is a modal used to replicate an Apple-like sheet experience on the mobile web.",
"keywords": [
"ios",
"web",
"a11y",
"sheet",
"modal",
"dialog",
"animation",
"bottom sheet",
"accessibility",
"react component",
"progressive-web-app"
],
"homepage": "https://github.com/sheet-ui/sheet",
"repository": {
"type": "git",
"url": "git+https://github.com/sheet-ui/sheet.git"
},
"bugs": {
"url": "https://github.com/sheet-ui/sheet/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"vite": "vite",
"build": "NODE_ENV=production node esbuild.config.mjs && tsc --emitDeclarationOnly",
"build:dev": "NODE_ENV=development node esbuild.config.mjs"
},
"devDependencies": {
"@types/react": "^18.3.11",
"esbuild": "0.24.0",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"peerDependencies": {
"framer-motion": "^11.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"react-aria-components": "^1.4.0"
}
}