-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "@evilkiwi/iframe",
"version": "1.0.3",
"description": "React Utility Hook for cross-origin iFrame IPC",
"files": [
"build"
],
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"license": "GPL-3.0-only",
"author": {
"name": "Evil Kiwi Limited",
"url": "https://evil.kiwi",
"email": "support@evil.kiwi"
},
"homepage": "https://github.com/evilkiwi/iframe",
"bugs": {
"url": "https://github.com/evilkiwi/iframe/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilkiwi/iframe.git"
},
"keywords": [
"typescript",
"react",
"ipc",
"iframe",
"hook"
],
"scripts": {
"clean": "rimraf build",
"prepack": "pnpm run build",
"build": "pnpm run clean && pnpm run compile",
"compile": "vite build",
"dev": "vite build --watch"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react-swc": "^3.5.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"rimraf": "^5.0.5",
"terser": "^5.26.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vite-plugin-dts": "^3.7.0"
}
}