Files
discordeno/package.json
Fleny f199bbf71c build(dev-deps): Update biome to v2 (#4246)
* update biome to v2

* Run biome check --write

* Update biome.jsonc

Co-authored-by: Link <lts20050703@gmail.com>

* Fix config error

* Bump biome version

* Update website/yarn.lock

* Update biome to 2.1.3

---------

Co-authored-by: Link <lts20050703@gmail.com>
2025-08-09 12:45:04 -05:00

45 lines
1.2 KiB
JSON

{
"name": "discordeno-monorepo",
"version": "21.0.0",
"private": true,
"type": "module",
"packageManager": "yarn@4.6.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:type": "turbo build:type",
"build:doc": "typedoc --options ./typedoc.jsonc",
"build:watch": "turbo watch build build:type",
"release-build": "turbo build build:type",
"test:unit": "turbo test:unit",
"test:unit-coverage": "turbo test:unit-coverage",
"test:bun-unit": "turbo test:bun-unit",
"test:deno-unit": "turbo test:deno-unit",
"test:integration": "turbo test:integration",
"test:e2e": "turbo test:e2e",
"test:type": "turbo build:type",
"test:test-type": "turbo test:test-type",
"fmt": "turbo fmt",
"lint": "turbo lint",
"format": "biome format --write",
"postinstall": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"turbo": "^2.5.4",
"typedoc": "^0.28.5",
"typedoc-plugin-markdown": "^4.7.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*": "biome check --no-errors-on-unmatched --write"
}
}