-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1009 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1009 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": "next-eval-monorepo",
"description": "NEXT-EVAL: From Web URLs to Structured Tables – Extraction and Evaluation",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=22",
"bun": ">=1.2.0"
},
"scripts": {
"preinstall": "bunx only-allow bun",
"postinstall": "turbo build --filter=@wordbricks/next-eval",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"clean": "turbo clean",
"check-types": "turbo check-types",
"add:component": "cd packages/ui && bun run add:component",
"test": "turbo run test",
"pkg:check": "syncpack update --check",
"pkg:bump": "syncpack update"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"lefthook": "1.11.14",
"syncpack": "14.0.0-alpha.16",
"turbo": "2.5.4",
"typescript": "5.8.3"
},
"packageManager": "bun@1.2.15",
"trustedDependencies": ["@biomejs/biome", "lefthook"],
"workspaces": ["apps/*", "packages/*"]
}