@fibscope/agent 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@fibscope/agent",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Fibscope Agent for Fiber node owners.",
6
+ "bin": {
7
+ "agent": "index.mjs",
8
+ "fibscope-agent": "index.mjs"
9
+ },
10
+ "main": "./index.mjs",
11
+ "files": [
12
+ "index.mjs",
13
+ "lib",
14
+ "README.md",
15
+ "PUBLISH.md",
16
+ ".env.example"
17
+ ],
18
+ "scripts": {
19
+ "check": "node --check index.mjs && node --check lib/pulse/index.mjs && node --check lib/pulse/engine.mjs && node --check lib/pulse/snapshot.mjs && node --check lib/pulse/intelligence.mjs && node --check lib/pulse/providers.mjs && node --check lib/pulse/server.mjs && node --check lib/observe/collector.mjs && node --check lib/bridge/recommendation.mjs && node --check lib/route/route.mjs && node --check lib/fnn-discovery.mjs",
20
+ "pack:dry-run": "npm pack --dry-run"
21
+ },
22
+ "dependencies": {
23
+ "@nervosnetwork/ckb-sdk-utils": "^0.109.5"
24
+ },
25
+ "license": "MIT",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }