-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.31 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
{
"name": "electron-affinity",
"version": "1.2.4",
"description": "Electron IPC via simple method calls",
"license": "MIT",
"author": "Joseph T. Lapp <[email protected]>",
"private": false,
"homepage": "https://github.com/jtlapp/electron-affinity",
"repository": {
"type": "git",
"url": "https://github.com/jtlapp/electron-affinity.git"
},
"scripts": {
"test": "tsc && shx mkdir -p build/test/window-scripts && shx cp test/window-scripts/dummy.html build/test/window-scripts/dummy.html && node_modules/.bin/rollup -c && ./test/run-tests",
"pub": "tsc && shx cp package.json build/src && shx cp README.md build/src && shx cp LICENSE build/src && shx rm build/src/*.map && shx rm build/src/lib/*.map && yarn publish build/src && rm build/src/package.json build/src/README.md build/src/LICENSE"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"electron": "^16.0.2",
"electron-mocha": "^11.0.0",
"mocha": "9.2.0",
"rollup": "^2.66.0",
"shx": "^0.3.3",
"source-map-support": "^0.5.21",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"keywords": [
"electron",
"ipc",
"rpc",
"typescript",
"typed"
]
}