-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "react-tiny-popover",
"version": "8.1.4",
"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": "rimraf dist/",
"copy-types": "shx 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": {
"@eslint/js": "^9.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"rimraf": "^4.4.1",
"shx": "^0.3.4",
"tsc-watch": "^6.2.1",
"typescript": "5.6.3",
"typescript-eslint": "^8.5.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}