mirror of https://github.com/actions/toolkit
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"scripts": {
|
|
"audit-all": "lerna run audit-moderate",
|
|
"bootstrap": "lerna exec -- npm install",
|
|
"build": "lerna run tsc",
|
|
"clean": "lerna clean",
|
|
"repair": "lerna repair",
|
|
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:test\" \"npm:build -- -- --noEmit\"",
|
|
"format": "prettier --write packages/**/*.ts",
|
|
"format-check": "prettier --check packages/**/*.ts",
|
|
"lint": "eslint packages/**/*.ts",
|
|
"lint-fix": "eslint packages/**/*.ts --fix",
|
|
"new-package": "scripts/create-package",
|
|
"test": "jest --testTimeout 70000"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.4",
|
|
"@types/node": "^20.5.7",
|
|
"@types/signale": "^1.4.1",
|
|
"concurrently": "^6.1.0",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-prettier": "^8.9.0",
|
|
"eslint-plugin-github": "^4.9.2",
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"flow-bin": "^0.115.0",
|
|
"jest": "^29.6.4",
|
|
"lerna": "^6.4.1",
|
|
"nx": "16.6.0",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@actions/artifact": "^2.1.7",
|
|
"@actions/attest": "^1.2.1",
|
|
"@actions/cache": "^3.2.4",
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/glob": "^0.4.0",
|
|
"@actions/http-client": "^2.2.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"tunnel": "^0.0.6",
|
|
"undici": "^6.18.1"
|
|
}
|
|
}
|