-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 943 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
43
44
{
"name": "@haiyaotec/window-channel",
"version": "1.0.3",
"description": "iframe window message channel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/HaiyaoTec/window-channel",
"keywords": [
"window",
"iframe",
"message",
"channel"
],
"repository": {
"url": "https://github.com/HaiyaoTec/window-channel"
},
"scripts": {
"prepublishOnly": "rm -rf || rimraf ./dist && tsc",
"build": "tsc"
},
"dependencies": {
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/uuid": "^8.3.0",
"cz-conventional-changelog": "^3.3.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
},
"author": "sudongyuer",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"*.d.ts",
"*.mjs"
]
}