1
0
Fork 0
mirror of https://github.com/rharkor/caching-for-turbo.git synced 2025-06-08 01:37:01 +09:00
caching-for-turbo/package.json
2024-06-13 14:27:20 +02:00

65 lines
2 KiB
JSON

{
"name": "typescript-action",
"description": "GitHub Actions TypeScript template",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/rharkor/caching-for-turbo",
"repository": {
"type": "git",
"url": "git+https://github.com/rharkor/caching-for-turbo.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "HUORT Louis (https://louis.huort.com)",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"all": "npm run format:write && npm run lint && npm run coverage && npm run package",
"test-build": "npm run -s package",
"test": "turbo run test-build",
"dev-run": "tsx ./src/dev-run.ts"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"fastify": "^4.27.0",
"stream-to-promise": "^3.0.0",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.14.2",
"@types/stream-to-promise": "^2.2.4",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.3.2",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.1.4",
"tsx": "^4.15.4",
"turbo": "^2.0.3",
"typescript": "^5.4.5"
},
"packageManager": "npm@10.5.2"
}