2019-08-02 17:15:36 +00:00
|
|
|
{
|
2019-08-07 10:36:18 -04:00
|
|
|
"name": "first-interaction-action",
|
|
|
|
|
"description": "An action for greeting first time contributors.",
|
2025-09-09 14:45:57 -04:00
|
|
|
"version": "3.1.0",
|
2025-02-19 13:47:20 -05:00
|
|
|
"author": "GitHub",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"private": true,
|
|
|
|
|
"homepage": "https://github.com/actions/first-interaction",
|
2019-08-02 17:15:36 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2019-08-29 15:53:22 -04:00
|
|
|
"url": "git+https://github.com/actions/first-interaction.git"
|
2019-08-02 17:15:36 +00:00
|
|
|
},
|
2025-02-19 13:47:20 -05:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/actions/first-interaction/issues"
|
|
|
|
|
},
|
2019-08-02 17:15:36 +00:00
|
|
|
"keywords": [
|
|
|
|
|
"actions",
|
2019-08-07 10:36:18 -04:00
|
|
|
"first",
|
|
|
|
|
"interaction"
|
2019-08-02 17:15:36 +00:00
|
|
|
],
|
2025-02-19 13:47:20 -05:00
|
|
|
"exports": {
|
|
|
|
|
".": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-07-29 11:34:36 +00:00
|
|
|
"node": ">=24"
|
2019-08-02 17:15:36 +00:00
|
|
|
},
|
2025-02-19 13:47:20 -05:00
|
|
|
"scripts": {
|
|
|
|
|
"bundle": "npm run format:write && npm run package",
|
|
|
|
|
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
|
|
|
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
|
|
|
"format:write": "npx prettier --write .",
|
|
|
|
|
"format:check": "npx prettier --check .",
|
|
|
|
|
"lint": "npx eslint .",
|
|
|
|
|
"local-action": "npx local-action . src/main.ts .env",
|
|
|
|
|
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
|
|
|
"package:watch": "npm run package -- --watch",
|
|
|
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
|
|
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
2019-08-02 17:15:36 +00:00
|
|
|
"dependencies": {
|
2025-02-19 13:47:20 -05:00
|
|
|
"@actions/core": "^1.11.1",
|
2025-07-15 19:11:44 +00:00
|
|
|
"@actions/github": "^6.0.1",
|
2025-08-05 17:25:31 +00:00
|
|
|
"@octokit/rest": "^22.0.0"
|
2019-08-02 17:15:36 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-10-03 13:49:21 +00:00
|
|
|
"@eslint/compat": "^1.4.0",
|
2025-10-27 21:12:11 +00:00
|
|
|
"@github/local-action": "^6.0.2",
|
2025-10-03 13:49:21 +00:00
|
|
|
"@jest/globals": "^30.2.0",
|
2025-09-22 21:07:14 +00:00
|
|
|
"@octokit/types": "^15.0.0",
|
2025-10-27 21:12:11 +00:00
|
|
|
"@rollup/plugin-commonjs": "^28.0.9",
|
|
|
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
|
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
2025-08-19 14:12:20 +00:00
|
|
|
"@types/jest": "^30.0.0",
|
2025-10-27 21:12:11 +00:00
|
|
|
"@types/node": "^24.9.1",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
2025-02-19 13:47:20 -05:00
|
|
|
"@typescript-eslint/parser": "^8.24.1",
|
2025-10-27 21:12:11 +00:00
|
|
|
"eslint": "^9.38.0",
|
2025-07-23 02:15:58 +00:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2025-07-21 22:53:19 +00:00
|
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
2025-07-15 19:05:51 +00:00
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2025-08-05 03:50:46 +00:00
|
|
|
"eslint-plugin-jest": "^29.0.1",
|
2025-08-19 06:34:48 +00:00
|
|
|
"eslint-plugin-prettier": "^5.5.4",
|
2025-09-15 20:36:50 +00:00
|
|
|
"globals": "^16.4.0",
|
2025-10-03 13:49:21 +00:00
|
|
|
"jest": "^30.2.0",
|
2025-02-19 13:47:20 -05:00
|
|
|
"make-coverage-badge": "^1.2.0",
|
2025-07-15 19:05:51 +00:00
|
|
|
"prettier": "^3.6.2",
|
|
|
|
|
"prettier-eslint": "^16.4.2",
|
2025-10-27 21:12:11 +00:00
|
|
|
"rollup": "^4.52.5",
|
|
|
|
|
"ts-jest": "^29.4.5",
|
2025-02-19 13:47:20 -05:00
|
|
|
"ts-jest-resolver": "^2.0.1",
|
|
|
|
|
"ts-node": "^10.9.2",
|
2025-10-03 13:49:21 +00:00
|
|
|
"typescript": "^5.9.3"
|
2025-02-19 13:47:20 -05:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
|
|
|
|
"@rollup/rollup-linux-x64-gnu": "*"
|
2019-08-02 17:15:36 +00:00
|
|
|
}
|
2025-02-19 13:47:20 -05:00
|
|
|
}
|