2019-07-22 14:15:40 -04:00
|
|
|
{
|
2019-09-21 08:56:30 -04:00
|
|
|
"name": "typescript-action",
|
2023-08-23 13:37:14 -04:00
|
|
|
"description": "GitHub Actions TypeScript template",
|
2019-07-22 14:15:40 -04:00
|
|
|
"version": "0.0.0",
|
2023-08-23 13:37:14 -04:00
|
|
|
"author": "",
|
2024-11-15 11:44:18 -05:00
|
|
|
"type": "module",
|
2019-07-22 14:15:40 -04:00
|
|
|
"private": true,
|
2023-08-23 13:37:14 -04:00
|
|
|
"homepage": "https://github.com/actions/typescript-action",
|
2019-07-22 14:15:40 -04:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2019-09-25 14:16:01 -05:00
|
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
2019-07-22 14:15:40 -04:00
|
|
|
},
|
2023-08-23 13:37:14 -04:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/actions/typescript-action/issues"
|
|
|
|
|
},
|
2019-07-22 14:15:40 -04:00
|
|
|
"keywords": [
|
2024-11-15 11:44:18 -05:00
|
|
|
"actions"
|
2019-07-22 14:15:40 -04:00
|
|
|
],
|
2023-08-30 09:13:41 -04:00
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
2023-08-24 14:55:31 -04:00
|
|
|
"engines": {
|
2025-08-01 12:06:11 +01:00
|
|
|
"node": ">=24.0.0"
|
2023-08-24 14:55:31 -04:00
|
|
|
},
|
2023-08-23 13:37:14 -04:00
|
|
|
"scripts": {
|
|
|
|
|
"bundle": "npm run format:write && npm run package",
|
2024-11-15 11:44:18 -05:00
|
|
|
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
2024-02-22 11:43:12 -05:00
|
|
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
|
|
|
"format:write": "npx prettier --write .",
|
|
|
|
|
"format:check": "npx prettier --check .",
|
2024-11-15 11:44:18 -05:00
|
|
|
"lint": "npx eslint .",
|
2025-02-21 15:33:10 -05:00
|
|
|
"local-action": "npx @github/local-action . src/main.ts .env",
|
2025-12-05 11:38:35 -05:00
|
|
|
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
2023-08-24 10:48:31 -04:00
|
|
|
"package:watch": "npm run package -- --watch",
|
2024-11-15 11:44:18 -05:00
|
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
2023-10-23 09:35:12 -04:00
|
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
2023-08-23 13:37:14 -04:00
|
|
|
},
|
2019-07-22 14:15:40 -04:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2026-02-18 16:30:38 -05:00
|
|
|
"@actions/core": "^3.0.0"
|
2019-07-22 14:15:40 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-18 16:30:33 -05:00
|
|
|
"@eslint/compat": "^2.0.2",
|
|
|
|
|
"@eslint/eslintrc": "^3.3.3",
|
|
|
|
|
"@eslint/js": "^10.0.1",
|
|
|
|
|
"@github/local-action": "^7.0.1",
|
2025-10-03 13:48:22 +00:00
|
|
|
"@jest/globals": "^30.2.0",
|
2025-11-03 03:01:49 +00:00
|
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
2025-10-27 03:02:53 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
|
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
2025-07-11 15:46:45 +00:00
|
|
|
"@types/jest": "^30.0.0",
|
2026-02-18 21:17:08 +00:00
|
|
|
"@types/node": "^25.2.3",
|
2026-02-18 21:01:31 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
2026-02-18 16:30:33 -05:00
|
|
|
"eslint": "^10.0.0",
|
2025-07-23 02:15:56 +00:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2026-02-18 21:01:31 +00:00
|
|
|
"eslint-plugin-jest": "^29.15.0",
|
|
|
|
|
"eslint-plugin-prettier": "^5.5.5",
|
2025-10-03 13:48:22 +00:00
|
|
|
"jest": "^30.2.0",
|
2023-08-23 13:37:14 -04:00
|
|
|
"make-coverage-badge": "^1.2.0",
|
2026-02-18 21:01:31 +00:00
|
|
|
"prettier": "^3.8.1",
|
|
|
|
|
"rollup": "^4.57.1",
|
2025-12-05 16:22:44 +00:00
|
|
|
"ts-jest": "^29.4.6",
|
2024-11-15 11:44:18 -05:00
|
|
|
"ts-jest-resolver": "^2.0.1",
|
2025-10-03 13:48:22 +00:00
|
|
|
"typescript": "^5.9.3"
|
2024-12-18 09:21:36 -05:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
2019-07-22 14:15:40 -04:00
|
|
|
}
|
|
|
|
|
}
|