-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 826 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
30
31
32
33
{
"name": "draftly",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"check": "biome check",
"check:fix": "biome check --write",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=draftly && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.5.8",
"@changesets/cli": "^2.29.8",
"@workspace/biome-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"turbo": "^2.6.3",
"typescript": "5.7.3"
},
"packageManager": "bun@1.3.5",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
]
}