blob: 4047394d4d19ab397768e7b3897abe565f4637a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "management-interface",
"version": "0.0.0",
"author": "Mullvad VPN",
"license": "GPL-3.0",
"description": "Mullvad VPN IPC. Contains types and functions for IPC with daemon.",
"main": "./dist/index.js",
"devDependencies": {
"grpc_tools_node_protoc_ts": "^5.3.3"
},
"optionalDependencies": {
"grpc-tools": "^1.12.4"
},
"peerDependencies": {
"google-protobuf": "*"
},
"scripts": {
"postinstall": "npm run build",
"build": "npm run build-proto && npm run build-typescript",
"build-proto": "bash ./build.sh",
"build-typescript": "tsc"
}
}
|