-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 979 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
{
"name": "palot",
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.8",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:desktop": "turbo dev --filter=@palot/desktop",
"dev:desktop:wayland": "turbo dev:wayland --filter=@palot/desktop",
"dev:web": "turbo dev:web --filter=@palot/desktop",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check-types": "turbo check-types",
"package": "turbo package",
"clean": "turbo clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@fontsource/geist-mono": "^5.2.7",
"@typescript/native-preview": "^7.0.0-dev.20260207.1",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"turbo": "^2.8.3"
}
}