-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 850 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "@plantae/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "ultra -r build",
"build:dts": "ultra -r --build build:dts",
"clean": "ultra -r clean",
"check": "biome check",
"format": "biome format --write",
"lint": "biome lint",
"release": "yarn build && yarn changeset publish",
"test": "yarn build && ultra -r test",
"typecheck": "tsc --noEmit",
"version": "changeset version && yarn install --no-immutable",
"version:snapshot": "changeset version --snapshot main && yarn install --no-immutable"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@changesets/cli": "^2.26.2",
"@types/node": "^18.15.0",
"concurrently": "^7.6.0",
"typescript": "^5.1.3",
"ultra-runner": "^3.10.5"
},
"packageManager": "yarn@3.6.0"
}