-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 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
39
40
{
"name": "voxx",
"private": true,
"license": "MIT",
"scripts": {
"test": "turbo run test",
"lint": "turbo run lint",
"changeset": "changeset",
"build": "turbo run build",
"dev": "turbo dev --ui tui",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"version-packages": "changeset version",
"dev:app": "turbo dev --filter=@voxx/web",
"build:app": "turbo run build --filter=@voxx/web",
"format": "prettier --write \"**/*.{ts,tsx,md,tpl}\"",
"release": "turbo run build --filter=@prudentbird/voxx-core --filter=@prudentbird/voxx && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@typescript/native-preview": "7.0.0-dev.20260610.1",
"@voxx/eslint-config": "workspace:*",
"@voxx/typescript-config": "workspace:*",
"prettier": "^3.8.1",
"turbo": "^2.9.18",
"unrun": "^0.3.1"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.4.1",
"pnpm": {
"overrides": {
"flatted@<3.4.2": ">=3.4.2",
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"postcss@<8.5.10": ">=8.5.10"
}
}
}