-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.47 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "electron-ipc-proxy",
"version": "2.1.1",
"description": "Make objects in main thread available to renderer threads over IPC",
"main": "src/server.js",
"browser": "src/client.js",
"directories": {
"lib": "src"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf src/**/*.js src/**/*.js.map src/**/*.d.ts",
"test": "tsc && ava --serial",
"example": "tsc && cd example && rollup --config && electron -r reify main.js"
},
"ava": {
"verbose": true,
"require": [
"reify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/frankwallis/electron-ipc-proxy.git"
},
"keywords": [
"proxy",
"rpc",
"event",
"emitter",
"electron",
"ipc",
"rxjs",
"observable",
"promise",
"remote",
"async"
],
"author": "Frank Wallis",
"license": "MIT",
"bugs": {
"url": "https://github.com/frankwallis/electron-ipc-proxy/issues"
},
"homepage": "https://github.com/frankwallis/electron-ipc-proxy",
"dependencies": {
"errio": "^1.2.2",
"tslib": "^1.9.0",
"uuid": "^3.2.1"
},
"peerDependencies": {
"electron": ">= 1.7.0"
},
"devDependencies": {
"@types/uuid": "^3.4.3",
"ava": "^0.25.0",
"electron": "^2.0.2",
"prettier": "^1.13.2",
"reify": "^0.16.2",
"rollup": "^0.59.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rxjs": "^6.2.0",
"typescript": "2.8.3"
}
}