forked from OpenAsar/arrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "elecord-rpc",
"version": "1.0.0",
"description": "RPC server for elecord-web",
"main": "src/server.js",
"scripts": {
"update": "bun update_db.js",
"compile": "bun build --compile ./src/index.js --outfile dist/erpc --minify --sourcemap",
"win32": "bun innosetup-compiler inno.iss --verbose --d=MyAppVersion=$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elecordapp/elecord-rpc.git"
},
"author": "elecord",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/elecordapp/elecord-rpc#readme",
"dependencies": {
"koffi": "^2.9.0"
},
"trustedDependencies": ["koffi"],
"type": "module",
"bin": {
"elecord-rpc": "src/index.js"
},
"devDependencies": {
"innosetup": "^6.4.1",
"nssm-bin": "2.24.102"
}
}