{ "name": "typescript-action", "version": "0.0.0", "private": true, "description": "TypeScript template action", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map --license licenses.txt", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/actions/typescript-action.git" }, "keywords": [ "actions", "node", "setup" ], "author": "", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0" }, "devDependencies": { "@types/node": "^18.15.0", "@typescript-eslint/parser": "^5.57.1", "@vercel/ncc": "^0.36.1", "eslint": "^8.37.0", "eslint-plugin-github": "^4.7.0", "eslint-plugin-jest": "^27.2.1", "jest": "^29.5.0", "js-yaml": "^4.1.0", "prettier": "^2.8.7", "ts-jest": "^29.1.0", "typescript": "^5.0.3" } }