-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
{
"name": "electron-rpc-api",
"version": "10.0.0",
"description": "Wrapper around the Electron's IPC for building type-safe API based RPC-like and reactive interactions",
"author": "Vladimir Yakovlev <[email protected]> (https://github.com/vladimiry)",
"license": "MIT",
"repository": "[email protected]:vladimiry/electron-rpc-api.git",
"engines": {
"node": ">=18"
},
"keywords": [
"electron",
"pubsub",
"ipc",
"rpc"
],
"main": "./lib/index.js",
"scripts": {
"lib": "npm-run-all lib:clean lint lib:compile test",
"lib:clean": "rimraf ./lib",
"lib:compile": "tsc --listEmittedFiles -p ./src/lib/tsconfig.json",
"lib:compile:watch": "tsc -w -p ./src/lib/tsconfig.json",
"lint": "npm-run-all lint:lib lint:test",
"lint:lib": "tslint -p ./src/lib/tsconfig.json -c ./tslint.json \"./src/{lib,@types}/**/*.ts\"",
"lint:test": "tslint -p ./test/tsconfig.json -c ./test/tslint.json \"./test/**/*.ts\"",
"output:clean": "rimraf ./output",
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json ava --verbose \"./test/**/*.{spec,test}.ts\"",
"prepare": "husky install"
},
"ava": {
"extensions": [
"js",
"ts"
],
"files": [
"./test/**/*.{spec,test}.{ts,js}"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"verbose": true
},
"peerDependencies": {
"electron": ">=5.0.0"
},
"dependencies": {
"pubsub-to-rpc-api": "^8.0.2",
"pure-uuid": "^1.8.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^18.7.16",
"@types/sinon": "^10.0.13",
"ava": "^4.3.3",
"cross-env": "^7.0.3",
"format-imports": "^4.0.0",
"husky": "^8.0.3",
"install-peers": "^1.0.4",
"lint-staged": "^15.2.0",
"npm-run-all2": "^6.1.1",
"rewiremock": "^3.14.5",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-rules-bunch": "^1.0.0",
"typescript": "^5.3.3"
},
"resolutions": {
"*/**/tslib": "^2.x"
}
}