-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "react-reverse-portal",
"version": "2.1.2",
"description": "Build an element once, move it anywhere",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/web/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.{js,ts,map}",
"src/**/*",
"README.md"
],
"scripts": {
"build": "rimraf dist/ && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && tsc -p tsconfig.web.json",
"pretest": "npm run build",
"test": "echo \"It built ok, that'll do for now\"",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/react-reverse-portal.git"
},
"keywords": [
"react",
"portal",
"move",
"reparent",
"container",
"wormhole",
"dom"
],
"author": "Tim Perry <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/httptoolkit/react-reverse-portal/issues"
},
"homepage": "https://github.com/httptoolkit/react-reverse-portal#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@storybook/addon-storysource": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"@types/events": "^3.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"babel-loader": "^8.0.6",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^3.0.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
}