mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 02:40:08 +00:00
* Update turbo to v2 Also some small config changes * Remove test for the non-exiting "client" pkg * Re-add build:type dependency to lint * Add missing comma * Use turbo in build:watch
47 lines
1.5 KiB
JSON
47 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.8.0",
|
|
"chokidar-cli": "^3.0.0",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "^15.2.7",
|
|
"turbo": "^2.0.6",
|
|
"typedoc": "^0.26.4",
|
|
"typedoc-plugin-markdown": "^4.1.2",
|
|
"typescript": "^5.5.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"lint-staged": {
|
|
"*": "yarn biome check --no-errors-on-unmatched --write"
|
|
},
|
|
"packageManager": "yarn@4.0.2"
|
|
}
|