-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 928 Bytes
/
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
{
"name": "electron-typesafe-ipc",
"version": "0.0.16",
"author": "honzahk",
"description": "Module for safe inter process communication (IPC) in electron. TypeScript supported.",
"keywords": [
"electron",
"ipc",
"typescript",
"module",
"typesafe",
"type-safe",
"safe",
"inter",
"process",
"communication",
"utility"
],
"license": "ISC",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/honzahk/electron-typesafe-ipc"
},
"scripts": {
"clean": "rm -rf dist/*",
"build": "tsc -p build/tsconfig.build.json",
"postbuild": "node scripts/copy.js",
"dist": "yarn clean && yarn build",
"pub": "yarn dist && npm publish dist"
},
"devDependencies": {
"@types/jest": "^24.0.10",
"electron": "^4.1.3",
"jest": "^24.3.1",
"ts-jest": "^24.0.0",
"typescript": "^3.4.1"
},
"dependencies": {
"source-map-support": "^0.5.11"
}
}