Files
aitbc/dev/env/node_modules/micro-packed/package.json
aitbc 816e258d4c refactor: move brother_node development artifact to dev/test-nodes subdirectory
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.
2026-03-30 17:09:06 +02:00

73 lines
1.8 KiB
JSON
Executable File

{
"name": "micro-packed",
"version": "0.7.3",
"description": "Define complex binary structures using composable primitives",
"dependencies": {
"@scure/base": "~1.2.5"
},
"files": [
"!lib/_type_test.js",
"!lib/_type_test.js.map",
"!lib/_type_test.d.ts",
"!lib/_type_test.d.ts.map",
"!lib/esm/_type_test.js",
"!lib/esm/_type_test.js.map",
"!lib/esm/_type_test.d.ts",
"!lib/esm/_type_test.d.ts.map",
"!src/_type_test.ts",
"lib",
"src"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/index.js"
},
"./debugger": {
"import": "./lib/esm/debugger.js",
"require": "./lib/debugger.js"
}
},
"sideEffects": false,
"scripts": {
"bench": "node benchmark/index.js noble",
"bench:all": "node benchmark/index.js",
"build": "tsc && tsc -p tsconfig.cjs.json",
"build:release": "npx jsbt esbuild test/build",
"lint": "prettier --check src",
"format": "prettier --write src",
"test": "node test/index.js",
"test:bun": "bun test/index.js",
"test:deno": "deno --allow-env --allow-read test/index.js",
"test:slow": "node test/slow.test.js"
},
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT",
"homepage": "https://github.com/paulmillr/micro-packed",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-packed.git"
},
"devDependencies": {
"@paulmillr/jsbt": "0.3.3",
"fast-check": "3.0.0",
"micro-bmark": "0.4.1",
"micro-should": "0.5.2",
"prettier": "3.5.3",
"typescript": "5.8.3"
},
"keywords": [
"encode",
"encoder",
"binary",
"bytes",
"struct",
"tuple",
"enum"
],
"funding": "https://paulmillr.com/funding/"
}