forked from lmtNoLimit/react-iframe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.76 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
71
{
"name": "react-iframe-wrapper",
"author": "Lâm Minh Thành",
"version": "1.0.7",
"type": "module",
"keywords": [
"React",
"react-iframe",
"Iframe",
"component",
"IframeWrapper"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.prod.json && vite build",
"dev-build": "tsc -p tsconfig.json && vite build --watch",
"preview": "vite preview",
"husky": "husky",
"prettier": "prettier --write **/*.{ts,tsx,d.ts,json}"
},
"devDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@swc/core": "^1.3.26",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-dts": "^1.7.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"files": [
"dist"
],
"main": "./dist/elements.es.js",
"module": "./dist/elements.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/elements.es.js",
"require": "./dist/elements.umd.js"
}
},
"lint-staged": {
"**/*.{ts,tsx,d.ts,json,html}": [
"prettier --write"
]
},
"description": "A React component that can wrap your components into an iframe",
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/sellersmith/react-iframe.git"
},
"bugs": {
"url": "https://github.com/sellersmith/react-iframe/issues"
},
"homepage": "https://github.com/sellersmith/react-iframe#readme"
}