Files
kestra/dev-tools/kestra-devtools/package.json
Roman Acevedo 5be401d23c ci: add a kestra-devtools cli, and comment PR with failed tests
this is a POC, I think it can already be useful. Next step will be to move kestra-devtools to a separate repo and publish it to npm
2025-09-12 18:48:12 +02:00

52 lines
1.4 KiB
JSON

{
"name": "kestra-devtools-cli",
"version": "1.0.0",
"description": "a CLI tool to run various dev tasks to build, test, release Kestra",
"bin": {
"my-cli": "dist/kestra-devtools-cli.cjs"
},
"main": "dist/kestra-devtools-cli.cjs",
"files": [
"dist/"
],
"scripts": {
"dev": "vitest --watch",
"build": "vite build && tsc -p tsconfig.types.json",
"test": "npm run lint && vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "npm run build",
"start": "node dist/kestra-devtools-cli.cjs",
"link": "npm link",
"unlink": "npm unlink -g my-cli || true"
},
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "MIT",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.5",
"vitest": "^3.2.4"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"fast-xml-parser": "^5.2.5",
"octokit": "^5.0.3"
}
}