-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 797 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 797 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
{
"name": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"lint:apply": "biome check --write .",
"lint:check": "biome check .",
"postinstall": "lefthook install",
"solid": "bun run --cwd packages/solid",
"test": "turbo run test:ci --concurrency=1",
"typecheck": "turbo run typecheck"
},
"packageManager": "bun@1.2.17",
"peerDependencies": {
"typescript": "^5.8.3"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@dotenvx/dotenvx": "^1.45.1",
"@release-it/keep-a-changelog": "^7.0.0",
"@types/bun": "^1.2.17",
"esbuild-plugin-solid": "^0.6.0",
"lefthook": "^1.11.14",
"release-it": "^19.0.3",
"tsup": "^8.5.0",
"turbo": "^2.5.4"
}
}