@pioneer-platform/nodes 8.11.9 → 8.11.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/nodes",
3
- "version": "8.11.9",
3
+ "version": "8.11.10",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
@@ -17,12 +17,16 @@
17
17
  "test:watch": "jest --coverage --watchAll",
18
18
  "build:watch": "onchange 'src/**/*.ts' -- pnpm run build",
19
19
  "view:coverage": "serve coverage/lcov-report",
20
- "clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules"
20
+ "clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules",
21
+ "validate-nodes": "bun run src/validate-nodes.ts",
22
+ "validate-nodes:verbose": "bun run src/validate-nodes.ts --verbose",
23
+ "validate-nodes:fast": "bun run src/validate-nodes.ts --timeout 3000 --concurrency 30"
21
24
  },
22
25
  "dependencies": {
23
26
  "@pioneer-platform/loggerdog": "^8.11.0",
24
27
  "@pioneer-platform/pioneer-caip": "^9.10.0",
25
- "dotenv": "^8.2.0"
28
+ "dotenv": "^8.2.0",
29
+ "ethers": "5.7.2"
26
30
  },
27
31
  "devDependencies": {
28
32
  "@types/jest": "^25.2.3",
package/tsconfig.json CHANGED
@@ -9,5 +9,13 @@
9
9
  "strict": true,
10
10
  "types": ["node"],
11
11
  "esModuleInterop": true
12
- }
12
+ },
13
+ "include": [
14
+ "src/**/*"
15
+ ],
16
+ "exclude": [
17
+ "lib",
18
+ "node_modules",
19
+ "src/validate-nodes.ts"
20
+ ]
13
21
  }