-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "react-tiny-popover",
"version": "8.1.2",
"description": "A simple and highly customizable popover react higher order component with no other dependencies!",
"keywords": [
"react",
"popover",
"react-popover",
"popout",
"pop",
"out",
"modal"
],
"repository": {
"type": "git",
"url": "https://github.com/alexkatz/react-tiny-popover.git"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Alex Katz",
"main": "dist/Popover.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p . && pnpm run copy-types",
"clean": "rm -rf dist/",
"copy-types": "cp src/index.d.ts dist/index.d.ts",
"start-demo": "cd docs && pnpm run start",
"watch": "tsc-watch -p . --onSuccess 'pnpm run copy-types'"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3",
"tsc-watch": "^6.0.4",
"typescript": "5.2.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}