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