-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"overrides": {
"effect": "3.21.4",
"@effect/cli": "0.75.2",
"@effect/platform": "0.96.2",
"@effect/platform-bun": "0.90.0",
"@effect/platform-node-shared": "0.60.0",
"@effect/rpc": "0.75.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/bun": "^1.3.14",
"@workspace/typescript-config": "workspace:*",
"bun-types": "^1.3.14",
"husky": "^9.1.7",
"portless": "^0.13.0",
"turbo": "^2.9.14",
"typescript": "6.0.3",
"ultracite": "7.7.0"
},
"name": "netxjs-monorepo",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"serve": "bun run --filter=inspector build && bun run apps/cli/src/index.ts serve",
"tui": "bun run --filter=inspector build && bun run apps/cli/src/index.ts tui",
"desktop:dev": "bun run --filter=@workspace/desktop dev",
"desktop:package": "bun run --filter=@workspace/desktop package:mac",
"lint": "bun run check",
"typecheck": "turbo typecheck",
"format": "bun run fix",
"check": "bunx --bun ultracite check",
"fix": "bunx --bun ultracite fix",
"prepare": "husky",
"upgrade": "bun run scripts/upgrade.ts"
},
"version": "0.0.1",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"private": true,
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=20.9.0",
"bun": ">=1.3.0"
}
}