-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "react-new-improved-window",
"version": "0.2.9",
"description": "React component to invoke a new window",
"keywords": [
"react",
"window",
"open",
"popup"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RyanNerd/react-new-improved-window.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "tslint -p tsconfig.json"
},
"author": "Ryan Jentzsch",
"license": "MIT",
"dependencies": {
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"typescript": "4.7.3"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"prettier": "^2.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react-hooks": "^2.2.2"
},
"files": [
"/lib"
]
}