37 lines
899 B
JSON
37 lines
899 B
JSON
{
|
|
"engines": {
|
|
"node": "^16",
|
|
"npm": "^8"
|
|
},
|
|
"name": "javascript-action",
|
|
"version": "1.0.0",
|
|
"description": "JavaScript Action Template",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"prepare": "tsc && ncc build dist/index.js -o dist && cat patch.js dist/index.js > dist/temp.js && mv dist/temp.js dist/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/javascript-action.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub",
|
|
"Actions",
|
|
"JavaScript"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/javascript-action/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/javascript-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^5.1.1",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.2.5",
|
|
"@vercel/ncc": "^0.36.1"
|
|
}
|
|
} |