-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "@sentnl/nodepulse",
"version": "1.1.1",
"description": "NodePulse is a lightweight JavaScript library designed to help developers maintain and utilize a list of healthy nodes (Currently it supports Hyperion, Atomic API, LightAPI, and IPFS nodes). The library connects to an API that provides a list of healthy nodes, which it regularly refreshes, and can fallback to a predefined list of default nodes in case of API failure.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"build:watch": "tsc --watch",
"example": "node lib/test.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"devDependencies": {
"typescript": "^5.6.2"
},
"keywords": [],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"files": [
"/lib",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sentnl/nodepulse.git"
}
}