-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "electron-ipc-flow",
"version": "2.0.0",
"description": "Fluently and type-safely write IPC for Electron",
"keywords": [
"electron",
"ipc",
"typescript",
"type-safe"
],
"files": [
"./dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/Hill-98/electron-ipc-flow",
"repository": {
"type": "git",
"url": "git+https://github.com/Hill-98/electron-ipc-flow.git"
},
"bugs": "https://github.com/Hill-98/electron-ipc-flow/issues",
"author": "Zhong Lufan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "vite build && vite build --mode preload && dts-bundle-generator --no-banner --no-check -o ./dist/index.d.ts ./src/index.ts",
"check": "tsc --noEmit",
"test": "node tests/test.mjs"
},
"devDependencies": {
"@types/node": "^22.0.0",
"dts-bundle-generator": "^9.5.1",
"electron": "^33.0.0",
"serialize-error": "^11.0.3",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"peerDependencies": {
"electron": ">= 12.0.0"
}
}