-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 858 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 858 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
34
35
{
"name": "bejamas-ui",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*'",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.7",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"turbo": "^2.5.5",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@astrojs/compiler": "^2.12.2",
"ts-morph": "^26.0.0"
}
}