mirror of
https://github.com/supabase/setup-cli.git
synced 2026-05-13 03:16:57 +00:00
Bumps the bun-minor-patch group with 3 updates: [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt), [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) and [oxlint-tsgolint](https://github.com/oxc-project/tsgolint). Updates `oxfmt` from 0.46.0 to 0.47.0 - [Release notes](https://github.com/oxc-project/oxc/releases) - [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxfmt/CHANGELOG.md) - [Commits](https://github.com/oxc-project/oxc/commits/oxfmt_v0.47.0/npm/oxfmt) Updates `oxlint` from 1.61.0 to 1.62.0 - [Release notes](https://github.com/oxc-project/oxc/releases) - [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md) - [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.62.0/npm/oxlint) Updates `oxlint-tsgolint` from 0.21.1 to 0.22.1 - [Release notes](https://github.com/oxc-project/tsgolint/releases) - [Commits](https://github.com/oxc-project/tsgolint/compare/v0.21.1...v0.22.1) --- updated-dependencies: - dependency-name: oxfmt dependency-version: 0.47.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: bun-minor-patch - dependency-name: oxlint dependency-version: 1.62.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: bun-minor-patch - dependency-name: oxlint-tsgolint dependency-version: 0.22.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: bun-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"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.1",
|
|
"@actions/tool-cache": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/bun": "^1.0.10",
|
|
"@types/bun": "^1.3.13",
|
|
"@typescript/native-preview": "^7.0.0-dev.20260410.1",
|
|
"oxfmt": "^0.47.0",
|
|
"oxlint": "^1.62.0",
|
|
"oxlint-tsgolint": "^0.22.1"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.3.10"
|
|
}
|
|
}
|