forked from Snipa22/xmr-node-proxy
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.33 KB
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
{
"name": "xmr-node-proxy",
"version": "0.29.2",
"description": "MoneroOcean-compatible XMR-style mining proxy for nodejs-pool with algo switching support",
"main": "proxy.js",
"bin": {
"xmr-node-proxy": "./proxy.js"
},
"scripts": {
"start": "node proxy.js",
"start:standalone": "node proxy.js --standalone",
"test": "node --require ./test/test_output_buffer.js --test --test-reporter=spec --test-concurrency=1 test/*.test.js",
"test:live": "node --require ./test/test_output_buffer.js --test --test-reporter=spec --test-concurrency=1 test/live.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoneroOcean/xmr-node-proxy.git"
},
"keywords": [
"mining-proxy",
"monero",
"moneroocean",
"cryptonote",
"forknote",
"stratum",
"json-rpc",
"randomx",
"mining-pool",
"proxy",
"xmr"
],
"author": "MoneroOcean contributors",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MoneroOcean/xmr-node-proxy/issues"
},
"homepage": "https://github.com/MoneroOcean/xmr-node-proxy#readme",
"engines": {
"node": ">=18"
},
"os": [
"linux",
"darwin"
],
"dependencies": {
"node-blocktemplate": "github:MoneroOcean/node-blocktemplate#v15.8.16",
"node-powhash": "github:MoneroOcean/node-powhash#v29.1.8"
}
}