-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 1.91 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "electron-ipc-cat",
"version": "2.0.1",
"description": "Passing object and type between Electron main process and renderer process simply via preload script.",
"main": "dist/common.js",
"type": "module",
"exports": {
"./client": "./dist/client.js",
"./server": "./dist/server.js",
"./common": "./dist/common.js",
"./fixContextIsolation": "./dist/fixContextIsolation.js",
"./utils": "./dist/utils.js"
},
"typesVersions": {
"*": {
"client": [
"./dist/client.d.ts"
],
"server": [
"./dist/server.d.ts"
],
"fixContextIsolation": [
"./dist/fixContextIsolation.d.ts"
],
"utils": [
"./dist/utils.d.ts"
],
"common": [
"./dist/common.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run clean && npm run build",
"clean": "rm -rf ./dist",
"prepare": "npm-install-peers",
"installType": "typesync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linonetwo/electron-ipc-cat.git"
},
"keywords": [
"electron",
"ipc",
"proxy",
"preload",
"remote",
"main",
"renderer"
],
"author": "lin onetwo",
"license": "MIT",
"bugs": {
"url": "https://github.com/linonetwo/electron-ipc-cat/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/linonetwo/electron-ipc-cat#readme",
"dependencies": {
"memize": "^2.1.0",
"serialize-error": "^11.0.0",
"type-fest": "^2.19.0"
},
"devDependencies": {
"@types/lodash": "^4.14.189",
"dprint": "^0.38.3",
"electron": "^25.2.0",
"eslint-config-tidgi": "^1.1.2",
"npm-install-peers": "^1.2.2",
"rxjs": "^7.8.1",
"typescript": "^4.8.4",
"typesync": "^0.9.2"
},
"peerDependencies": {
"electron": ">= 13.0.0",
"rxjs": ">= 7.5.0"
}
}