-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 995 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 995 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
36
37
{
"name": "@ui8kit/resta-monorepo",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/ui8kit/resta-app"
},
"author": "UI8Kit",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "bun@1.3.3",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"format": "biome format --write .",
"format:check": "biome check .",
"lint": "turbo run lint",
"lint:biome": "biome check .",
"lint:oxlint": "oxlint --import-plugin apps/",
"lint:all": "bun run lint:biome && bun run lint:oxlint && turbo run lint",
"typecheck": "turbo run typecheck",
"generate": "turbo run generate",
"generate:html": "turbo run generate:html",
"generate:styles": "turbo run generate:styles",
"maintain": "turbo run maintain"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"oxlint": "^1.51.0",
"turbo": "^2.8.10"
}
}