-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 977 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
41
42
{
"name": "async-post-message",
"version": "0.1.0",
"description": "Asynchronous postMessage protocol for typed, promise-based windows and iFrame communication",
"author": "Kevin Hou (https://khou22.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/khou22/async-post-message/issues"
},
"keywords": [
"postMessage",
"promise",
"async",
"window",
"iframe",
"typed",
"promise-based",
"await",
"react",
"typescript"
],
"homepage": "https://async-post-message.vercel.app",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/khou22/async-post-message.git"
},
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}