Files
typescript-action/package.json
T

73 lines
2.3 KiB
JSON
Raw Normal View History

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-01-09 17:34:01 -05:00
"node": ">=20"
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 .",
2024-09-06 10:09:11 -04:00
"local-action": "npx 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",
"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": {
"@eslint/compat": "^1.2.6",
"@github/local-action": "^2.5.1",
2024-03-28 19:29:10 +00:00
"@jest/globals": "^29.7.0",
2024-11-15 11:44:18 -05:00
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
2024-11-15 11:44:18 -05:00
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.16",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
2024-11-15 11:38:36 -05:00
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
2023-09-13 03:46:06 +00:00
"jest": "^29.7.0",
2023-08-23 13:37:14 -04:00
"make-coverage-badge": "^1.2.0",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"rollup": "^4.34.1",
"ts-jest": "^29.2.5",
2024-11-15 11:44:18 -05:00
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
2024-12-18 09:21:36 -05:00
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
2019-07-22 14:15:40 -04:00
}
}