forked from dvandal/cryptonote-nodejs-pool
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
50
51
52
53
54
55
{
"name": "cryptonote-nodejs-pool",
"version": "1.5.0",
"license": "GPL-2.0",
"author": "Daniel Vandal",
"contributors": [
{
"name": "Conceal Network Dev team",
"url": "https://github.com/concealnetwork/cryptonote-nodejs-pool"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dvandal/cryptonote-nodejs-pool.git"
},
"scripts": {
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"dependencies": {
"async": "^3.2.5",
"bn.js": "^5.2.2",
"bufferutil": "^4.0.8",
"cli-color": "^2.0.3",
"cryptoforknote-util": "git+https://github.com/Acktarius/node-cryptoforknote-util.git",
"cryptonight-hashing": "git+https://github.com/Acktarius/cryptonight-hashing.git",
"dateformat": "^4.6.3",
"mailgun.js": "^11.1.0",
"telegraf": "^4.16.3",
"nodemailer": "^7.0.12",
"nodemailer-sendmail-transport": "^1.0.2",
"redis": "^5.10.0",
"socket.io": "^4.8.3",
"time-ago": "^0.2.1",
"utf-8-validate": "^6.0.3"
},
"engines": {
"node": ">=20.0.0 <23.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12"
},
"overrides": {
"bignum": "^0.13.1",
"base58-native": "npm:bs58@^5.0.0",
"cookie": "^1.1.1",
"form-data": "^4.0.5",
"qs": "^6.14.1",
"tough-cookie": "^4.1.3",
"ws": "^8.19.0",
"socket.io-parser": "^4.2.5"
}
}