{ "name": "setup-cli", "version": "2.0.0", "private": true, "description": "Supabase CLI GitHub Action", "keywords": [ "actions" ], "license": "MIT", "author": "", "repository": { "type": "git", "url": "git+https://github.com/supabase/setup-cli.git" }, "type": "module", "scripts": { "all": "bun run format && bun run lint && bun run coverage", "ci": "bun run format:check && bun run lint && bun run coverage", "coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov", "format": "bun x oxfmt --write . '!coverage/**'", "format:check": "bun x oxfmt --check . '!coverage/**'", "lint": "bun x oxlint --deny-warnings --type-aware --type-check --tsconfig tsconfig.json src", "test": "bun test", "typecheck": "bun x tsgo -p tsconfig.json --noEmit" }, "dependencies": { "@actions/core": "^3.0.0", "@actions/tool-cache": "^4.0.0" }, "devDependencies": { "@tsconfig/bun": "^1.0.10", "@types/bun": "^1.3.11", "@typescript/native-preview": "^7.0.0-dev.20260410.1", "oxfmt": "^0.44.0", "oxlint": "^1.59.0", "oxlint-tsgolint": "^0.20.0" }, "engines": { "bun": ">=1.3.10" } }