-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.6 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
69
70
{
"name": "react-teleportal",
"version": "0.0.2",
"description": "Alternative React portal implementation, giving you control over portal rendering.",
"author": {
"name": "Richard Scarrott",
"url": "https://richardscarrott.com"
},
"sideEffects": false,
"main": "./dist/portal.js",
"exports": {
".": {
"types": "./dist/portal.d.ts",
"import": "./dist/portal.mjs",
"require": "./dist/portal.js"
}
},
"homepage": "https://github.com/richardscarrott/react-teleportal#readme",
"repository": "https://github.com/richardscarrott/react-teleportal",
"keywords": [
"react",
"portal",
"gateway",
"wormhole",
"teleport",
"animation",
"animate",
"transitionGroup",
"animatePresence",
"ssr",
"serverSideRender",
"inlet",
"outlet",
"controlled",
"modal",
"dialog"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.2",
"@types/react": "^18.0.25",
"denoify": "^1.4.2",
"esbuild": "^0.15.7",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"ts-jest": "^29.0.3",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
},
"scripts": {
"build": "tsup src/portal.tsx --format esm,cjs --dts --clean",
"test": "jest",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"dist"
],
"denoify": {
"includes": [
"README.md",
"LICENSE"
]
}
}