-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "@stellarbeat/js-stellar-node-connector",
"version": "7.0.1",
"description": "Connect and interact with nodes in the Stellar Network over the tcp protocol",
"repository": {
"type": "git",
"url": "https://github.com/stellarbeat/js-stellar-node-connector.git"
},
"scripts": {
"preversion": "pnpm run build",
"build": "tsc --declaration",
"examples:connect": "pnpm run build; node examples/connect",
"examples:scp": "pnpm run build; node examples/scp",
"test": "jest"
},
"types": "lib/index.d.ts",
"files": [
".env.dist",
"readme.md",
"lib/**",
"LICENSE",
"examples/**",
"pnpm-lock.yaml"
],
"main": "lib/index.js",
"author": "pieterjan84@github",
"license": "MIT",
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"@stellar/stellar-base": "12.1.1",
"async": "^3.2.6",
"dotenv": "^16.4.5",
"lru-cache": "^11.0.1",
"neverthrow": "^8.0.0",
"pino": "9.4.0",
"sodium-native": "^4.1.1",
"workerpool": "^9.1.3",
"yn": "^4.0.0"
},
"devDependencies": {
"@types/async": "^3.2.24",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@types/sodium-native": "^2.3.9",
"@types/workerpool": "^6.4.7",
"bignumber.js": "9.1.2",
"eslint": "9.11.1",
"jest": "29.7.0",
"np": "^10.0.7",
"prettier": "3.3.3",
"ts-jest": "29.1.1",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}