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.
70 lines
1.5 KiB
JSON
Executable File
70 lines
1.5 KiB
JSON
Executable File
{
|
|
"name": "chokidar",
|
|
"description": "Minimal and efficient cross-platform file watching library",
|
|
"version": "4.0.3",
|
|
"homepage": "https://github.com/paulmillr/chokidar",
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"handler.js",
|
|
"handler.d.ts",
|
|
"esm"
|
|
],
|
|
"main": "./index.js",
|
|
"module": "./esm/index.js",
|
|
"types": "./index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./esm/index.js",
|
|
"require": "./index.js"
|
|
},
|
|
"./handler.js": {
|
|
"import": "./esm/handler.js",
|
|
"require": "./handler.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"readdirp": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@paulmillr/jsbt": "0.2.1",
|
|
"@types/node": "20.14.8",
|
|
"chai": "4.3.4",
|
|
"prettier": "3.1.1",
|
|
"rimraf": "5.0.5",
|
|
"sinon": "12.0.1",
|
|
"sinon-chai": "3.7.0",
|
|
"typescript": "5.5.2",
|
|
"upath": "2.0.1"
|
|
},
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">= 14.16.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/paulmillr/chokidar.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/paulmillr/chokidar/issues"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc && tsc -p tsconfig.esm.json",
|
|
"lint": "prettier --check src",
|
|
"format": "prettier --write src",
|
|
"test": "node --test"
|
|
},
|
|
"keywords": [
|
|
"fs",
|
|
"watch",
|
|
"watchFile",
|
|
"watcher",
|
|
"watching",
|
|
"file",
|
|
"fsevents"
|
|
],
|
|
"funding": "https://paulmillr.com/funding/"
|
|
}
|