-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "@lpfreelance/electron-bridge",
"version": "1.1.0",
"description": "Safely expose main process modules of Electron to renderer process through IPC.",
"author": "Louis Poirier",
"license": "MIT",
"private": true,
"bugs": "https://github.com/poirierlouis/electron-bridge/issues",
"repository": {
"type": "git",
"url": "https://github.com/poirierlouis/electron-bridge.git"
},
"keywords": [
"electron",
"ipc",
"renderer",
"main",
"process",
"bridge",
"context",
"isolation",
"sandbox"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"dist"
],
"scripts": {
"postinstall": "npm run test",
"pretest": "npm run clean",
"test": "jest --config jest.config.js",
"coverage": "jest --config jest.config.js --coverage=true",
"clean": "shx rm -rf dist/",
"generate": "eb generate bridge.config.json",
"build": "npm run clean && webpack --config webpack.dev.js",
"build:prod": "npm run clean && webpack --config webpack.prod.js",
"pack": "node pack.js && npm pack ./dist"
},
"devDependencies": {
"@lpfreelance/electron-bridge-cli": "^1.0.3",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"electron": ">=9.0.0",
"eslint": "^8.35.0",
"glob": "^9.2.1",
"jest": "^29.4.3",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}