-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
38
{
"name": "starstats-monorepo",
"private": true,
"version": "1.0.0",
"description": "StarStats — EAC-safe personal Star Citizen metrics platform",
"license": "MPL-2.0",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.18.0",
"pnpm": ">=9.15.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"tauri": "pnpm exec tauri",
"tauri:dev": "cd crates/starstats-client && pnpm exec tauri dev",
"tauri:build": "cd crates/starstats-client && pnpm exec tauri build"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"turbo": "^2.9.14",
"typescript": "^5.7.2",
"@types/node": "^22.10.2"
},
"pnpm": {
"overrides": {
"postcss@<8.5.10": ">=8.5.10",
"protobufjs@>=7 <7.5.8": ">=7.5.8 <8",
"protobufjs@>=8 <8.0.2": ">=8.0.2",
"vite@<6.4.2": ">=6.4.2",
"esbuild@<0.25.0": ">=0.25.0",
"brace-expansion@>=5.0.0 <5.0.6": ">=5.0.6"
}
}
}