-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 998 Bytes
/
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
{
"name": "react-popoverjs",
"version": "1.1.11",
"type": "module",
"author": "Carl Handy",
"license": "MIT",
"keywords": [
"react",
"popover",
"popoverjs",
"popper",
"tooltip",
"tooltipjs",
"modal",
"modaljs"
],
"description": "A react wrapper for the Popover browser API",
"main": "dist/popover-js.umd.js",
"module": "dist/popover-js.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview",
"test": "vitest",
"deploy": "npm version patch && npm run build && npm publish"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.3.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/ui": "^1.6.0",
"jsdom": "^24.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
}
}