-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 979 Bytes
/
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
{
"name": "iframe-click-away",
"version": "1.0.1",
"homepage": "https://github.com/congzhou09/iframe-click-away",
"keywords": [
"click away",
"iframe",
"iframe click away"
],
"description": "click away between inner iframe and outer window",
"types": "types/index.d.ts",
"module": "es/index.js",
"files": [
"es",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"playground": "vite ./tests/playground",
"test": "playwright test",
"postinstall": "playwright install chromium"
},
"author": "yuancongzhou",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.51.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-router": "^5.1.20",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.3.0",
"typescript": "^5.8.2",
"vite": "^6.2.2"
}
}