|
1 | 1 | { |
2 | 2 | "name": "@rharkor/caching-for-turbo", |
3 | 3 | "description": "Sets up Turborepo Remote Caching to work with GitHub Actions built-in cache", |
4 | | - "version": "2.4.0", |
| 4 | + "version": "2.2.0", |
5 | 5 | "private": false, |
6 | 6 | "homepage": "https://github.com/rharkor/caching-for-turbo", |
7 | 7 | "repository": { |
|
27 | 27 | "engines": { |
28 | 28 | "node": ">=20" |
29 | 29 | }, |
| 30 | + "scripts": { |
| 31 | + "bundle": "npm run format:write && npm run package", |
| 32 | + "coverage": "make-coverage-badge --output-path ./badges/coverage.svg", |
| 33 | + "format:write": "prettier --write .", |
| 34 | + "format:check": "prettier --check .", |
| 35 | + "lint": "eslint .", |
| 36 | + "package": "ncc build src/index.ts -o dist/setup --source-map --license licenses.txt && ncc build src/post.ts -o dist/post --source-map --license licenses.txt && ncc build src/cli.ts -o dist/cli --source-map --license licenses.txt", |
| 37 | + "package:watch": "npm run package -- --watch", |
| 38 | + "all": "npm run format:write && npm run lint && npm run coverage && npm run package", |
| 39 | + "test-build": "npm run -s package", |
| 40 | + "test-unit": "jest", |
| 41 | + "test": "turbo run test-build test-unit", |
| 42 | + "dev-run": "tsx ./src/dev-run.ts", |
| 43 | + "cleanup": "tsx ./src/dev/cleanup.ts", |
| 44 | + "start": "node dist/cli/index.js" |
| 45 | + }, |
30 | 46 | "license": "MIT", |
| 47 | + "dependencies": { |
| 48 | + "@actions/cache": "^6.0.0", |
| 49 | + "@actions/core": "^3.0.0", |
| 50 | + "@aws-sdk/client-s3": "^3.0.0", |
| 51 | + "@aws-sdk/lib-storage": "^3.0.0", |
| 52 | + "@rharkor/logger": "^1.3.1", |
| 53 | + "fastify": "^5.0.0", |
| 54 | + "filesize-parser": "^1.5.1", |
| 55 | + "parse-duration": "^2.1.4", |
| 56 | + "stream-to-promise": "^3.0.0", |
| 57 | + "wait-on": "^9.0.0" |
| 58 | + }, |
| 59 | + "devDependencies": { |
| 60 | + "@eslint/js": "^10.0.0", |
| 61 | + "@jest/globals": "^30.0.0", |
| 62 | + "@types/node": "^24.0.0", |
| 63 | + "@types/stream-to-promise": "^2.2.4", |
| 64 | + "@types/wait-on": "^5.3.4", |
| 65 | + "@typescript-eslint/eslint-plugin": "^8.29.1", |
| 66 | + "@typescript-eslint/parser": "^8.29.1", |
| 67 | + "@vercel/ncc": "^0.38.1", |
| 68 | + "dotenv": "^17.0.0", |
| 69 | + "eslint": "^10.0.0", |
| 70 | + "eslint-plugin-jest": "^29.0.0", |
| 71 | + "eslint-plugin-jsonc": "^3.0.0", |
| 72 | + "eslint-plugin-prettier": "^5.5.5", |
| 73 | + "globals": "^17.0.0", |
| 74 | + "make-coverage-badge": "^1.2.0", |
| 75 | + "prettier": "^3.8.0", |
| 76 | + "prettier-eslint": "^16.4.2", |
| 77 | + "ts-jest": "^29.1.4", |
| 78 | + "tsx": "^4.15.4", |
| 79 | + "turbo": "^2.0.3", |
| 80 | + "typescript": "^6.0.0", |
| 81 | + "typescript-eslint": "^8.29.1", |
| 82 | + "@semantic-release/changelog": "^6.0.3", |
| 83 | + "@semantic-release/commit-analyzer": "^13.0.0", |
| 84 | + "@semantic-release/git": "^10.0.1", |
| 85 | + "@semantic-release/github": "^12.0.0", |
| 86 | + "@semantic-release/npm": "^13.0.0", |
| 87 | + "@semantic-release/release-notes-generator": "^14.0.0", |
| 88 | + "@semantic-release/exec": "^7.1.0", |
| 89 | + "conventional-changelog-conventionalcommits": "^9.0.0", |
| 90 | + "semantic-release": "^25.0.0" |
| 91 | + }, |
31 | 92 | "packageManager": "npm@11.14.1", |
32 | 93 | "publishConfig": { |
33 | 94 | "access": "public" |
|
0 commit comments