mirror of
https://github.com/germondai/trawl.git
synced 2026-08-17 12:11:23 +02:00
Splits the single [Unreleased] CHANGELOG block into dated 0.1.0-1.0.0 sections matching the milestone commits being tagged for issue #24 (numeric release tags), and bumps every package.json to 1.0.0.
21 lines
425 B
JSON
21 lines
425 B
JSON
{
|
|
"private": true,
|
|
"name": "trawl",
|
|
"version": "1.0.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev:api": "bun --cwd apps/api dev",
|
|
"dev:web": "bun --cwd apps/web dev",
|
|
"dev:docs": "bun --cwd apps/docs dev",
|
|
"lint": "biome lint .",
|
|
"format": "biome format . --write",
|
|
"check": "biome check . --write"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.5.3"
|
|
}
|
|
}
|