Files
discordeno/package.json
dependabot[bot] 8997837477 build(deps-dev): bump @biomejs/biome from 1.8.3 to 1.9.4 (#3944)
* build(deps-dev): bump @biomejs/biome from 1.8.3 to 1.9.4

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.8.3 to 1.9.4.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.9.4/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update biome configs / website package.json & lock

If we de-sync the website package.json and lock it will make the scripts
in website/package.json crash for the invalid biome config

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fleny <fleny113@outlook.com>
Co-authored-by: ITOH <to@itoh.at>
2024-11-05 13:12:24 +01:00

48 lines
1.5 KiB
JSON

{
"name": "discordeno-monorepo",
"version": "19.0.0-alpha.1",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "echo \"Starting build in watch mode...\" && chokidar \"packages/**/*.ts\" --ignore \"packages/**/dist/**/*.d.ts\" -c \"turbo run build build:type\"",
"build:doc": "typedoc --options ./typedoc.json && node scripts/finalizeTypedocs.js",
"build:type": "turbo run build:type",
"release-build": "turbo run build build:type",
"test:bun-unit": "turbo run test:bun-unit",
"test:deno-unit": "turbo run test:deno-unit",
"test:e2e": "turbo run test:e2e",
"test:integration": "turbo run test:integration",
"test:test-type": "turbo run test:test-type",
"test:type": "turbo run build:type",
"test:unit": "turbo run test:unit",
"test:unit-coverage": "turbo run test:unit-coverage",
"fmt": "turbo run fmt",
"format": "biome format --write",
"lint": "turbo run lint",
"prepare": "husky",
"setup-dd": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"chokidar-cli": "^3.0.0",
"discordeno": "19.0.0-alpha.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"turbo": "^2.0.12",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*": "yarn biome check --no-errors-on-unmatched --write"
},
"packageManager": "yarn@4.0.2"
}