autoversion/package.json

26 lines
534 B
JSON
Raw Permalink Normal View History

2024-08-15 09:31:12 +07:00
{
"name": "autoversion",
"version": "1.0.0",
"description": "Automatically create a tag whenever the version changes in file version",
"main": "main.js",
"scripts": {
"start": "node ./src/main.js",
"package": "ncc build ./src/main.js -o dist"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Al Azhar",
"type": "module",
"dependencies": {
"@actions/core": "^1.10.0",
"semver": "^7.3.8",
"gitea-js": "1.22.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}