Development Artifact Cleanup: ✅ BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location - dev/test-nodes/brother_node/: Moved from root directory for better organization - Contains development configuration, test logs, and test chain data - No impact on production systems - purely development/testing artifact ✅ DEVELOPMENT ARTIFACTS IDENTIFIED: - Chain ID: aitbc-brother-chain (test/development chain) - Ports: 8010 (P2P) and 8011 (RPC) - different from production - Environment: .env file with test configuration - Logs: rpc.log and node.log from development testing session (March 15, 2026) ✅ ROOT DIRECTORY CLEANUP: Removed development clutter from production directory - brother_node/ moved to dev/test-nodes/brother_node/ - Root directory now contains only production-ready components - Development artifacts properly organized in dev/ subdirectory DIRECTORY STRUCTURE IMPROVEMENT: 📁 dev/test-nodes/: Development and testing node configurations 🏗️ Root Directory: Clean production structure with only essential components 🧪 Development Isolation: Test environments separated from production BENEFITS: ✅ Clean Production Directory: No development artifacts in root ✅ Better Organization: Development nodes grouped in dev/ subdirectory ✅ Clear Separation: Production vs development environments clearly distinguished ✅ Maintainability: Easier to identify and manage development components RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
89 lines
3.1 KiB
JSON
Executable File
89 lines
3.1 KiB
JSON
Executable File
{
|
|
"name": "@nomicfoundation/edr",
|
|
"version": "0.12.0-next.24",
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.18.4",
|
|
"@nomicfoundation/ethereumjs-util": "^9.0.4",
|
|
"@tsconfig/node20": "^20.1.6",
|
|
"@types/chai": "^4.2.0",
|
|
"@types/chai-as-promised": "^7.1.8",
|
|
"@types/mocha": ">=9.1.0",
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.61.0",
|
|
"@typescript-eslint/parser": "5.61.0",
|
|
"chai": "^4.3.6",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chalk": "^2.4.2",
|
|
"eslint": "^8.44.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"eslint-plugin-mocha": "10.4.1",
|
|
"eslint-plugin-prettier": "5.2.1",
|
|
"ethers": "^6.1.0",
|
|
"json-stream-stringify": "^3.1.4",
|
|
"mocha": "^10.0.0",
|
|
"prettier": "^3.2.5",
|
|
"ts-node": "^10.8.0",
|
|
"typescript": "~5.8.2"
|
|
},
|
|
"engines": {
|
|
"node": ">= 20"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./solidity-tests": "./dist/src/ts/solidity_tests.js"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"src/"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"napi": {
|
|
"name": "edr",
|
|
"triples": {
|
|
"defaults": false,
|
|
"additional": [
|
|
"aarch64-apple-darwin",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-unknown-linux-gnu",
|
|
"aarch64-unknown-linux-musl",
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-unknown-linux-musl",
|
|
"x86_64-pc-windows-msvc"
|
|
]
|
|
}
|
|
},
|
|
"repository": "NomicFoundation/edr.git",
|
|
"types": "index.d.ts",
|
|
"dependencies": {
|
|
"@nomicfoundation/edr-darwin-arm64": "0.12.0-next.24",
|
|
"@nomicfoundation/edr-darwin-x64": "0.12.0-next.24",
|
|
"@nomicfoundation/edr-linux-arm64-gnu": "0.12.0-next.24",
|
|
"@nomicfoundation/edr-linux-arm64-musl": "0.12.0-next.24",
|
|
"@nomicfoundation/edr-linux-x64-gnu": "0.12.0-next.24",
|
|
"@nomicfoundation/edr-linux-x64-musl": "0.12.0-next.24",
|
|
"@nomicfoundation/edr-win32-x64-msvc": "0.12.0-next.24"
|
|
},
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "pnpm run build:publish",
|
|
"build:debug": "bash ../../scripts/build_edr_napi.sh --features op",
|
|
"build:dev": "bash ../../scripts/build_edr_napi.sh --release --features op,test-mock",
|
|
"build:publish": "bash ../../scripts/build_edr_napi.sh --profile napi-publish --features op",
|
|
"build:scenarios": "bash ../../scripts/build_edr_napi.sh --release --features op,scenarios",
|
|
"build:tracing": "bash ../../scripts/build_edr_napi.sh --release --features op,tracing",
|
|
"build:typingFile": "bash ../../scripts/build_edr_napi.sh --features op",
|
|
"clean": "rm -rf @nomicfoundation/edr.node",
|
|
"eslint": "eslint 'test/**/*.ts'",
|
|
"lint": "pnpm run prettier && pnpm run eslint",
|
|
"lint:fix": "pnpm run prettier --write",
|
|
"pretest": "pnpm build:dev",
|
|
"prettier": "prettier --check \"test/**.ts\"",
|
|
"test": "node --max-old-space-size=8192 node_modules/mocha/bin/_mocha --recursive \"test/**/*.ts\"",
|
|
"testNoBuild": "node --max-old-space-size=8192 node_modules/mocha/bin/_mocha --recursive \"test/**/{,!(logs|mock)}.ts\"",
|
|
"universal": "napi universal",
|
|
"version": "napi version"
|
|
}
|
|
} |