-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.18 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ocean-node-bootstrap",
"version": "1.0.0",
"description": "Ocean Node bootstrap",
"author": "Ocean Protocol Foundation",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=24.19.0"
},
"bugs": {
"url": "https://github.com/oceanprotocol/ocean-node-bootstrap/issues"
},
"scripts": {
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc --sourceMap",
"clean": "rm -rf ./dist/",
"start": "node --import ./dist/telemetry/otel.js --max-old-space-size=28784 --trace-warnings --experimental-specifier-resolution=node dist/index.js",
"lint": "eslint . && npm run type-check",
"test": "node --test test/*.test.mjs",
"lint:fix": "eslint . --fix",
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'",
"type-check": "tsc --noEmit",
"release": "release-it",
"changelog": "auto-changelog -p"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-metrics-otlp-http": "^0.221.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.221.0",
"@opentelemetry/host-metrics": "^0.39.0",
"@opentelemetry/instrumentation-runtime-node": "^0.34.0",
"@opentelemetry/resources": "^2.10.0",
"@opentelemetry/sdk-metrics": "^2.10.0",
"@opentelemetry/sdk-node": "^0.221.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"@chainsafe/libp2p-yamux": "^8.0.1",
"@ipshipyard/libp2p-auto-tls": "^2.0.2",
"@libp2p/bootstrap": "^12.0.32",
"@libp2p/circuit-relay-v2": "^4.2.13",
"@libp2p/crypto": "^5.1.23",
"@libp2p/dcutr": "^3.0.28",
"@libp2p/http": "^2.0.6",
"@libp2p/identify": "^4.1.14",
"@libp2p/kad-dht": "^16.4.5",
"@libp2p/keychain": "^6.1.7",
"@libp2p/mdns": "^12.0.32",
"@libp2p/peer-id": "^6.0.15",
"@libp2p/ping": "^3.1.13",
"@libp2p/tcp": "^11.0.28",
"@libp2p/tls": "^3.1.10",
"@libp2p/websockets": "^10.1.21",
"@multiformats/multiaddr": "^13.0.3",
"amqplib": "^2.0.1",
"datastore-level": "^13.0.1",
"interface-datastore": "^10.0.1",
"ipaddr.js": "^2.5.0",
"libp2p": "^3.3.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"auto-changelog": "^2.6.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-security": "^4.0.1",
"globals": "^17.11.0",
"prettier": "^3.9.6",
"release-it": "^21.0.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0"
},
"release-it": {
"hooks": {
"after:bump": "npm run changelog"
},
"plugins": {},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}