{ "name": "setup-cli", "version": "0.0.1", "private": true, "description": "Supabase CLI GitHub Action", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map --license licenses.txt", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/supabase/setup-cli.git" }, "keywords": [ "actions", "node", "setup" ], "author": "", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", "@actions/tool-cache": "^2.0.1", "semver": "^7.6.3" }, "devDependencies": { "@types/js-yaml": "^4.0.9", "@types/node": "^16.11.47", "@types/semver": "^7.5.8", "@typescript-eslint/parser": "^5.62.0", "@vercel/ncc": "^0.38.2", "eslint": "^8.57.1", "eslint-plugin-github": "^4.9.0", "eslint-plugin-jest": "^27.9.0", "jest": "^28.1.3", "js-yaml": "^4.1.0", "prettier": "2.8.8", "ts-jest": "^28.0.8", "typescript": "^4.8.4" } }