2020117-agent 0.2.4 → 0.2.5

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.
Files changed (1) hide show
  1. package/package.json +2 -9
package/package.json CHANGED
@@ -1,12 +1,10 @@
1
1
  {
2
2
  "name": "2020117-agent",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "2020117 agent runtime — API polling + Hyperswarm P2P + CLINK Lightning payments",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "2020117-agent": "./dist/agent.js",
8
- "2020117-customer": "./dist/customer.js",
9
- "2020117-provider": "./dist/provider.js",
10
8
  "2020117-pipeline": "./dist/pipeline.js",
11
9
  "2020117-session": "./dist/session.js"
12
10
  },
@@ -18,21 +16,16 @@
18
16
  "./swarm": "./dist/swarm.js",
19
17
  "./clink": "./dist/clink.js",
20
18
  "./api": "./dist/api.js",
21
- "./p2p-provider": "./dist/p2p-provider.js",
22
- "./p2p-customer": "./dist/p2p-customer.js"
19
+ "./p2p-provider": "./dist/p2p-provider.js"
23
20
  },
24
21
  "scripts": {
25
22
  "agent": "node dist/agent.js",
26
- "customer": "node dist/customer.js",
27
- "provider": "node dist/provider.js",
28
23
  "pipeline": "node dist/pipeline.js",
29
24
  "session": "node dist/session.js",
30
25
  "build": "tsc",
31
26
  "prepublishOnly": "tsc",
32
27
  "typecheck": "tsc --noEmit",
33
28
  "dev:agent": "npx tsx src/agent.ts",
34
- "dev:customer": "npx tsx src/customer.ts",
35
- "dev:provider": "npx tsx src/provider.ts",
36
29
  "dev:pipeline": "npx tsx src/pipeline.ts",
37
30
  "dev:session": "npx tsx src/session.ts"
38
31
  },