2023-01-14 08:11:40 -06:00
|
|
|
{
|
|
|
|
"name": "typescript-action",
|
2023-03-06 09:38:55 -06:00
|
|
|
"version": "1.1.1",
|
2023-01-14 08:11:40 -06:00
|
|
|
"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",
|
2023-01-14 08:44:01 -06:00
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
|
|
|
"prepare": "husky install"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2023-01-14 08:36:43 -06:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-01-14 08:46:55 -06:00
|
|
|
"@actions/exec": "^1.1.1"
|
2023-01-14 08:11:40 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-25 15:19:50 -05:00
|
|
|
"@tsconfig/node16": "^1.0.3",
|
2023-03-20 12:47:11 +00:00
|
|
|
"@types/node": "^18.15.3",
|
2023-03-20 12:49:47 +00:00
|
|
|
"@typescript-eslint/parser": "^5.55.0",
|
2023-02-20 03:57:01 +00:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-03-13 12:37:32 +00:00
|
|
|
"eslint": "^8.36.0",
|
2023-02-20 11:11:11 +00:00
|
|
|
"eslint-plugin-github": "^4.6.1",
|
2023-01-14 08:46:55 -06:00
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2023-03-25 15:19:50 -05:00
|
|
|
"husky": "^8.0.3",
|
2023-03-13 12:41:51 +00:00
|
|
|
"jest": "^29.5.0",
|
2023-01-14 08:11:40 -06:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-03-20 07:42:35 -05:00
|
|
|
"prettier": "2.8.5",
|
2023-01-14 08:46:55 -06:00
|
|
|
"ts-jest": "^29.0.5",
|
2023-03-25 15:19:50 -05:00
|
|
|
"typescript": "^5.0.2"
|
2023-01-14 08:11:40 -06:00
|
|
|
}
|
|
|
|
}
|