mirror of
https://github.com/easingthemes/ssh-deploy
synced 2026-04-05 20:33:01 +08:00
- Upgrade eslint 8.31 → 10.1 with new flat config (eslint.config.js)
- Upgrade @vercel/ncc 0.36 → 0.38.4
- Replace eslint-config-airbnb-base + eslint-plugin-import with @eslint/js + @stylistic/eslint-plugin
- Remove stale overrides in package.json (word-wrap, semver)
- Remove obsolete eslint-disable comments from source files
- Add { cause } to rethrown error in rsyncCli.js
- Add .gitignore and CLAUDE.md
- Resolves all 3 npm audit vulnerabilities (flatted, minimatch, js-yaml)
40 lines
1015 B
JSON
40 lines
1015 B
JSON
{
|
|
"name": "@draganfilipovic/ssh-deploy",
|
|
"version": "6.0.0",
|
|
"description": "Fast NodeJS action to deploy specific directory from `GITHUB_WORKSPACE` to a server via rsync over ssh.",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"/dist",
|
|
"./action.yml",
|
|
"./README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run lint && ncc build ./src/index.js -o dist -m",
|
|
"lint": "eslint ./src/index.js",
|
|
"lint:fix": "eslint ./src/index.js --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/easingthemes/ssh-deploy.git"
|
|
},
|
|
"keywords": [
|
|
"deploy",
|
|
"ssh",
|
|
"rsync"
|
|
],
|
|
"author": "Dragan Filipovic",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/easingthemes/ssh-deploy/issues"
|
|
},
|
|
"homepage": "https://github.com/easingthemes/ssh-deploy#readme",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
"@vercel/ncc": "^0.38.4",
|
|
"eslint": "^10.1.0",
|
|
"globals": "^17.4.0"
|
|
}
|
|
}
|