Files
alepm/package.json
2025-08-19 03:08:52 +02:00

67 líneas
1.5 KiB
JSON

{
"name": "alepm",
"version": "1.0.0",
"description": "Advanced and secure Node.js package manager with binary storage, intelligent caching, and comprehensive security features",
"main": "src/index.js",
"bin": {
"alepm": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "jest",
"lint": "eslint src/",
"prepublishOnly": "npm test && npm run lint",
"postinstall": "echo 'Thanks for installing alepm! Run: alepm --help to get started.'"
},
"keywords": [
"package-manager",
"node",
"npm",
"security",
"binary-storage",
"cache",
"integrity",
"vulnerability",
"lock-file",
"dependency-management"
],
"author": {
"name": "ale",
"email": "ale@manalejandro.com"
},
"license": "MIT",
"homepage": "https://github.com/manalejandro/alepm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/manalejandro/alepm.git"
},
"bugs": {
"url": "https://github.com/manalejandro/alepm/issues"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"src/**/*",
"LICENSE",
"README.md",
"IMPLEMENTATION.md"
],
"dependencies": {
"commander": "^11.0.0",
"chalk": "^4.1.2",
"semver": "^7.5.4",
"tar": "^6.1.15",
"crypto": "^1.0.1",
"fs-extra": "^11.1.1",
"node-fetch": "^2.6.12",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"listr2": "^6.6.1"
},
"devDependencies": {
"jest": "^29.6.2",
"eslint": "^8.45.0"
}
}