mirror of
https://github.com/actions/runner-container-hooks.git
synced 2025-12-15 01:06:43 +00:00
28 lines
643 B
JSON
28 lines
643 B
JSON
{
|
|
"name": "hooklib",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.14",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"eslint": "^9.31.0",
|
|
"eslint-plugin-github": "^6.0.0",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1"
|
|
}
|
|
}
|