Files

28 lines
642 B
JSON
Raw Permalink Normal View History

2022-06-02 15:53:11 -04:00
{
"name": "hooklib",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
2025-07-29 11:06:45 +02:00
"types": "lib/index.d.ts",
2022-06-02 15:53:11 -04:00
"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": {
2025-07-29 11:06:45 +02:00
"@types/node": "^24.0.14",
2022-06-02 15:53:11 -04:00
"@zeit/ncc": "^0.22.3",
2025-07-29 11:06:45 +02:00
"eslint": "^9.31.0",
"eslint-plugin-github": "^6.0.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
2022-06-02 15:53:11 -04:00
},
"dependencies": {
2026-01-15 21:21:58 +01:00
"@actions/core": "^2.0.2"
2022-06-02 15:53:11 -04:00
}
}