nx-remotecache-custom
Version:
Build custom caching for @nrwl/nx in a few lines of code
45 lines • 1.3 kB
JSON
{
"name": "nx-remotecache-custom",
"version": "20.0.0",
"description": "Build custom caching for @nrwl/nx in a few lines of code",
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/NiklasPor/nx-remotecache-custom.git"
},
"keywords": [
"nx",
"remote",
"cache",
"remotecache",
"angular",
"typescript"
],
"author": "Niklas Portmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/NiklasPor/nx-remotecache-custom/issues"
},
"homepage": "https://github.com/NiklasPor/nx-remotecache-custom#readme",
"devDependencies": {
"@types/tar": "^6.1.3",
"@types/yargs": "^17.0.13",
"nx": "^20.0.0",
"typescript": "^5.1.0"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"tar": "^6.2.1"
},
"peerDependencies": {
"nx": "^20.0.0"
},
"scripts": {
"build": "rm -rf dist && tsc && cp package.json dist/package.json && cp README.md dist/README.md && cp CHANGELOG.md dist/CHANGELOG.md",
"release": "pnpm build && cd dist && pnpm publish && cd ..",
"local-release": "pnpm build && cd dist && pnpm publish --registry=http://localhost:4873/ --no-git-checks && cd ..",
"link": "pnpm build && cd dist && pnpm link && cd .."
}
}