{ "name": "upload-release-action", "version": "2.9.0", "private": true, "description": "Upload files to a GitHub release", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "lint": "eslint src/**/*.ts", "pack": "ncc build", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run pack && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/svestaro/upload-release-action.git" }, "keywords": [ "actions", "upload", "release", "assets", "asset" ], "author": "Sven-Hendrik Haase", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", "@actions/github": "^6.0.0", "@lifeomic/attempt": "^3.0.3", "@octokit/core": "^5.1.0", "glob": "^10" }, "devDependencies": { "@octokit/types": "^12.5.0", "@types/jest": "^29", "@types/node": "^20", "@typescript-eslint/eslint-plugin": "^7.0.2", "@typescript-eslint/parser": "^7", "@vercel/ncc": "^0.38.1", "eslint": "^8", "eslint-plugin-github": "^4.10", "eslint-plugin-jest": "^27", "jest": "^29", "jest-circus": "^29", "js-yaml": "^4", "prettier": "^3.2", "ts-jest": "^29", "typescript": "^5" } }