monorepo-cache-manager
Version:
Lightweight cache manager for monorepos with cross-workspace cache sharing and optimization
63 lines (62 loc) • 1.58 kB
JSON
{
"name": "monorepo-cache-manager",
"version": "1.0.1",
"description": "Lightweight cache manager for monorepos with cross-workspace cache sharing and optimization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"size": "npm run build && node -e \"console.log('Package size:', require('fs').statSync('dist').size, 'bytes')\""
},
"keywords": [
"monorepo",
"cache",
"workspace",
"build",
"optimization",
"yarn",
"npm",
"pnpm",
"lerna"
],
"author": "sudhagar_b",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"fs-extra": "^11.0.0",
"glob": "^10.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sudhagarjb/monorepo-cache-manager.git"
},
"bugs": {
"url": "https://github.com/sudhagarjb/monorepo-cache-manager/issues"
},
"homepage": "https://github.com/sudhagarjb/monorepo-cache-manager#readme"
}