migrate from eslint & prettier to biome

This commit is contained in:
2025-10-18 14:07:07 +02:00
parent 2412238236
commit 8b1e9d1cf6
23 changed files with 778 additions and 625 deletions

View File

@@ -1,73 +1,65 @@
{
"name": "zod-pocketbase-continue",
"version": "0.5.0",
"description": "Zod tooling for your PocketBase instance.",
"author": {
"email": "garandplg@garandplg.com",
"name": "Garand_PLG",
"url": "https://gitea.garandplg.com"
},
"license": "MIT",
"keywords": [
"pocketbase",
"schemas",
"typescript",
"typegen",
"type generation",
"zod"
],
"homepage": "https://gitea.garandplg.com/GarandPLG/zod-pocketbase-continue",
"publishConfig": {
"access": "public"
},
"type": "module",
"sideEffects": false,
"packageManager": "bun@1.2.23",
"engines": {
"node": ">=24.9.0"
},
"main": "dist/index.js",
"bin": {
"zod-pocketbase-continue": "dist/server/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"assets"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"changeset": "changeset",
"release": "bun scripts/release.mjs"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"c12": "^3.3.0",
"citty": "^0.1.6",
"es-toolkit": "^1.40.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^24.7.1",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"pocketbase": "^0.26.2",
"prettier": "^3.6.2",
"tsdown": "^0.15.6",
"zod": "^3.25.76"
},
"peerDependencies": {
"pocketbase": "^0.26.2",
"zod": "^3.25.76"
}
"name": "zod-pocketbase-continue",
"version": "0.5.1",
"description": "Zod tooling for your PocketBase instance.",
"author": {
"email": "garandplg@garandplg.com",
"name": "Garand_PLG",
"url": "https://gitea.garandplg.com"
},
"license": "MIT",
"keywords": ["pocketbase", "schemas", "typescript", "typegen", "type generation", "zod"],
"homepage": "https://gitea.garandplg.com/GarandPLG/zod-pocketbase-continue",
"publishConfig": {
"access": "public"
},
"type": "module",
"sideEffects": false,
"packageManager": "bun@1.2.23",
"engines": {
"node": ">=24.9.0"
},
"main": "dist/index.js",
"bin": {
"zod-pocketbase-continue": "dist/server/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
}
},
"files": ["dist", "assets"],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"changeset": "changeset",
"release": "bun scripts/release.mjs",
"lint": "biome check .",
"lint:w": "biome check --write .",
"format": "biome format .",
"format:w": "biome format --write ."
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"c12": "^3.3.0",
"citty": "^0.1.6",
"es-toolkit": "^1.40.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.7.1",
"pocketbase": "^0.26.2",
"tsdown": "^0.15.6",
"zod": "^3.25.76"
},
"peerDependencies": {
"pocketbase": "^0.26.2",
"zod": "^3.25.76"
}
}