-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.08 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "responsive-react-actionsheet",
"version": "1.1.2",
"description": "Lightweight responsive action sheet / bottom sheet for React — self-injecting styles, themeable colors, zero dependencies, TypeScript types",
"author": "https://github.com/codeAesthetic",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeAesthetic/react-action-sheet.git"
},
"homepage": "https://github.com/codeAesthetic/react-action-sheet#readme",
"bugs": {
"url": "https://github.com/codeAesthetic/react-action-sheet/issues"
},
"sideEffects": [
"*.css"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"source": "src/index.tsx",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/index.css": "./dist/index.css",
"./styles.css": "./dist/index.css",
"./package.json": "./package.json"
},
"engines": {
"node": ">=16"
},
"scripts": {
"styles": "node scripts/generate-styles.mjs",
"prebuild": "npm run styles",
"build": "tsup && node scripts/copy-css.mjs",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"pretest": "npm run styles",
"test": "vitest run",
"test:watch": "vitest",
"verify": "node scripts/generate-styles.mjs --check && npm run lint && npm run typecheck && npm test && npm run build",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/dist"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.1.1",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"files": [
"dist"
],
"keywords": [
"react",
"reactjs",
"react-component",
"actionsheet",
"action-sheet",
"action sheet",
"react-actionsheet",
"react-action-sheet",
"sheet",
"bottom-sheet",
"bottomsheet",
"bottom-drawer",
"drawer",
"modal",
"dialog",
"popup",
"overlay",
"menu",
"context-menu",
"mobile",
"responsive",
"ios",
"animation",
"slide-up",
"themeable",
"css-variables",
"dark-mode",
"typescript",
"ssr",
"zero-dependency",
"lightweight",
"ui",
"component",
"components",
"frontend",
"web",
"javascript"
]
}