mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
25 lines
718 B
JSON
25 lines
718 B
JSON
{
|
|
"name": "kyoo",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "yarn workspaces foreach -pi run dev",
|
|
"web": "yarn workspace web dev",
|
|
"mobile": "yarn workspace mobile dev",
|
|
"build:web": "yarn workspace web build",
|
|
"build:mobile": "yarn workspace mobile build",
|
|
"build:mobile:apk": "yarn workspace mobile build:apk",
|
|
"build:mobile:dev": "yarn workspace mobile build:dev",
|
|
"update": "yarn workspace mobile update",
|
|
"lint": "biome lint .",
|
|
"lint:fix": "biome lint . --write",
|
|
"format": "biome format .",
|
|
"format:fix": "biome format . --write"
|
|
},
|
|
"workspaces": ["apps/*", "packages/*"],
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.8.3",
|
|
"typescript": "5.5.4"
|
|
},
|
|
"packageManager": "yarn@3.2.4"
|
|
}
|