-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "@wangminghua/open-peer-channel",
"version": "0.1.5",
"description": "基于PostMessage的对象和方法的双向通讯库",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf -rf ./dist && rollup --config",
"serve": "http-server ./"
},
"files": [
"dist",
"src"
],
"keywords": [
"postMessage",
"iframe",
"channel"
],
"author": "wangminghua",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/crypto-js": "^4.2.2",
"crypto-js": "^4.2.0",
"http-server": "^14.1.1",
"lodash": "^4.17.21",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WangMingHua111/open-peer-channel.git"
},
"bugs": {
"url": "https://github.com/WangMingHua111/open-peer-channel/issues"
},
"homepage": "https://github.com/WangMingHua111/open-peer-channel#readme",
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}