This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.53 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "electron-typed-bridge",
"version": "2.0.0",
"description": "End-to-end typesafe Electron IPC (Inter-Process Communication).",
"main": "dist/common.js",
"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 --build --verbose",
"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",
"lint": "prettier --check . && eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webcatalog/electron-typed-bridge.git"
},
"keywords": [
"electron",
"ipc",
"proxy",
"preload",
"remote",
"main",
"renderer"
],
"author": "WebCatalog Pte. Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/webcatalog/electron-typed-bridge/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/webcatalog/electron-typed-bridge#readme",
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"lodash": "^4.17.21",
"serialize-error": "^11.0.1",
"type-fest": "^4.2.0"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/lodash": "^4.14.197",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-install-peers": "^1.2.2",
"prettier": "^3.0.2",
"typescript": "^5.1.6",
"typesync": "^0.11.1"
},
"peerDependencies": {
"electron": ">= 13.0.0",
"rxjs": ">= 7.5.0"
}
}