autotag/package.json
2024-03-11 16:28:34 -05:00

29 lines
854 B
JSON

{
"name": "autotag-action",
"version": "1.1.4",
"private": true,
"description": "Automatically create a tag whenever the version changes in package.json",
"main": "app/main.js",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^2.1.0",
"semver": "^7.3.4"
},
"devDependencies": {
"esbuild": "^0.15.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "esbuild --bundle ./src/main.js --format=esm --platform=node --outdir=dist --external:octokit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ButlerLogic/action-autotag.git"
},
"author": "Corey Butler",
"license": "MIT",
"bugs": {
"url": "https://github.com/ButlerLogic/action-autotag/issues"
},
"homepage": "https://github.com/ButlerLogic/action-autotag#readme"
}