-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.08 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.08 KB
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
55
{
"name": "electron-api-gateway",
"version": "1.0.0",
"description": "Decoupled IPC communication for Electron apps",
"main": "src/index.js",
"dependencies": {
"paper": "^0.12.4"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"electron": "^5.0.11",
"google-protobuf": "^3.15.6",
"node": "^10.0.0",
"protobufjs": "^6.10.2",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0"
},
"files": [
"src/index.js",
"src"
],
"scripts": {
"test": "electron ./test/main.js",
"build": "webpack --config ./build/webpack.config.js",
"run": "webpack --config ./build/webpack.config.js && electron ./test/main.js"
},
"keywords": [
"electron",
"ipc",
"communication",
"communicate",
"app",
"message",
"messages",
"send",
"receive",
"call",
"answer",
"reply",
"async",
"await"
],
"author": {
"name": "next",
"email": "1056935467@qq.com",
"url": "http://barnyrubble.tumblr.com/"
},
"license": "ISC",
"xo": {
"envs": [
"node",
"browser"
]
}
}