-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-overlay-trigger",
"version": "3.0.1",
"description": "react positioned overlay component",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"prepublishOnly": "rm -rf dist && pnpm run build",
"dev": "pnpm build --watch",
"build": "bunchee",
"clean": "rm -rf dist",
"build:docs": "pnpm build && pnpm next build docs",
"dev:docs": "pnpm next docs"
},
"files": [
"dist",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/huozhi/react-overlay-trigger.git"
},
"keywords": [
"react",
"overlay",
"positioned",
"trigger",
"tooltip"
],
"author": "huozhi",
"license": "MIT",
"bugs": {
"url": "https://github.com/huozhi/react-overlay-trigger/issues"
},
"homepage": "https://github.com/huozhi/react-overlay-trigger#readme",
"peerDependencies": {
"react": "^18 || ^19.0.0-0",
"react-dom": "^18 || ^19.0.0-0"
},
"devDependencies": {
"@types/node": "22.8.6",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"bunchee": "^5.6.1",
"next": "15.0.3-canary.4",
"react": "19.0.0-rc-7c8e5e7a-20241101",
"react-dom": "19.0.0-rc-7c8e5e7a-20241101",
"react-overlay-trigger": "link:./",
"sugar-high": "^0.7.4",
"typescript": "^5.4.5"
},
"overrides": {
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc"
},
"packageManager": "pnpm@7.33.5+sha512.4e499f22fffe5845aa8f9463e1386b2d72c3134e0ebef9409360ad844fef0290e82b479b32eb2ec0f30e56607e1820c22167829fd62656d41a8fd0cc4a0f4267"
}