nextcloud-version-matrix/package.json
David Dreschner 25ddaceda2
feat: Update dependencies to latest version and refactor action to ES6 module
Signed-off-by: David Dreschner <github-2017@dreschner.net>
2026-06-21 23:28:49 +02:00

26 lines
668 B
JSON

{
"name": "nextcloud-version-matrix",
"type": "module",
"version": "1.0.0",
"description": "Generate nextcloud version matrix for an app",
"main": "src/action.mjs",
"scripts": {
"build": "ncc build src/action.mjs -o dist",
"test": "INPUT_FILENAME=.github/workflows/info.xml node src/action.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.1",
"@xmldom/xmldom": "^0.9.10",
"deep-equal": "^2.2.3",
"url-exist": "^3.0.1",
"xpath": "^0.0.34"
},
"devDependencies": {
"@vercel/ncc": "^0.44.0"
}
}