package.jsonā¢965 B
{
"name": "@repomix/memory-benchmarks",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Memory usage benchmarks and leak detection for repomix",
"scripts": {
"build": "tsc",
"build:repomix": "cd ../.. && node --run build",
"build:all": "node --run build:repomix && node --run build",
"clean": "rm -rf dist",
"test": "node --run build:all && node --expose-gc dist/memory-test.js",
"test:full": "node --run build:all && node --expose-gc dist/memory-test.js --full",
"test:continuous": "node --run build:all && node --expose-gc dist/memory-test.js --continuous"
},
"dependencies": {
"@types/asciichart": "^1.5.8",
"asciichart": "^1.5.25",
"repomix": "file:../.."
},
"devDependencies": {
"@types/node": "^24.7.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"benchmark",
"memory",
"performance",
"leak-detection"
]
}