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",
|
2024-11-15 11:44:18 -05:00
|
|
|
"package": "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": {
|
2024-10-21 15:54:35 +00:00
|
|
|
"@actions/core": "^1.11.1"
|
2019-07-22 14:15:40 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-06-27 14:57:59 +00:00
|
|
|
"@eslint/compat": "^1.3.1",
|
2025-07-23 02:15:56 +00:00
|
|
|
"@github/local-action": "^5.1.0",
|
|
|
|
|
"@jest/globals": "^30.0.5",
|
2025-06-27 14:57:59 +00:00
|
|
|
"@rollup/plugin-commonjs": "^28.0.6",
|
2025-03-17 18:19:14 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
2025-07-07 03:46:45 +00:00
|
|
|
"@rollup/plugin-typescript": "^12.1.4",
|
2025-07-11 15:46:45 +00:00
|
|
|
"@types/jest": "^30.0.0",
|
2025-08-05 17:14:26 +00:00
|
|
|
"@types/node": "^24.2.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.39.0",
|
2025-05-19 03:20:37 +00:00
|
|
|
"@typescript-eslint/parser": "^8.32.1",
|
2025-07-28 04:26:46 +00:00
|
|
|
"eslint": "^9.32.0",
|
2025-07-23 02:15:56 +00:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2025-06-27 14:57:59 +00:00
|
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2025-07-11 15:50:23 +00:00
|
|
|
"eslint-plugin-jest": "^29.0.1",
|
2025-07-23 02:15:56 +00:00
|
|
|
"eslint-plugin-prettier": "^5.5.3",
|
|
|
|
|
"jest": "^30.0.5",
|
2023-08-23 13:37:14 -04:00
|
|
|
"make-coverage-badge": "^1.2.0",
|
2025-07-15 19:10:31 +00:00
|
|
|
"prettier": "^3.6.2",
|
2025-05-12 03:51:26 +00:00
|
|
|
"prettier-eslint": "^16.4.2",
|
2025-08-05 17:14:26 +00:00
|
|
|
"rollup": "^4.46.2",
|
|
|
|
|
"ts-jest": "^29.4.1",
|
2024-11-15 11:44:18 -05:00
|
|
|
"ts-jest-resolver": "^2.0.1",
|
2025-08-05 17:14:26 +00:00
|
|
|
"typescript": "^5.9.2"
|
2024-12-18 09:21:36 -05:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
2019-07-22 14:15:40 -04:00
|
|
|
}
|
|
|
|
|
}
|