-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "frame-link-react",
"version": "2.0.2",
"description": "Async postMessage provider for communicating with iframe",
"main": "dist/FrameLinkProvider.js",
"repository": {
"type": "git",
"url": "https://github.com/dcassil/frame-link-react"
},
"scripts": {
"build": "tsc",
"test": "npx jest --config=jest.config.js"
},
"author": "Daniel Cassil",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": ">=16.13.1",
"@types/react-dom": ">=16.3.0",
"@types/testing-library__react": "^10.2.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": ">=18",
"react-dom": ">=18",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"frame-link": "2.0.3",
"recoil": "^0.7.7"
},
"keywords": [
"iframe",
"postMessage",
"async",
"send data to iframe",
"communicate with iframe",
"control iframe",
"react"
]
}