-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@wycey/wycey-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.3.9",
"engines": {
"node": "please-use-bun",
"npm": "please-use-bun",
"yarn": "please-use-bun",
"pnpm": "please-use-bun",
"bun": ">=1"
},
"homepage": "https://wycey.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/wycey/wycey.dev.git"
},
"dependencies": {
"@biomejs/biome": "^2.4.10",
"@cloudflare/workers-types": "^4.20260405.1",
"@solid-primitives/event-listener": "^2.4.5",
"@types/node": "^25.5.2",
"@wycey/biome-config": "workspace:*",
"lefthook": "^2.1.5",
"npm-run-all2": "^8.0.4",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"turbo": "^2.9.5",
"typescript": "^6.0.2"
},
"scripts": {
"preinstall": "bunx only-allow bun",
"prepare": "run-s setup:*",
"setup:git": "lefthook install",
"build": "turbo run build",
"deploy": "turbo run deploy",
"dev": "turbo run dev",
"clean": "turbo run clean",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"lint.fix": "biome check --write .",
"preview": "turbo run preview",
"start": "turbo run start",
"turbo": "turbo"
},
"trustedDependencies": [
"@biomejs/biome",
"@wycey/blog",
"lefthook",
"workerd"
]
}