-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "root",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "bun --filter docs dev",
"build:docs": "bun --filter docs build",
"bundle": "bun --filter @algolia/sitesearch build",
"dev:vanilla": "bun --filter @algolia/sitesearch dev & bun --filter vanilla serve",
"build:vanilla": "bun --filter @algolia/sitesearch build",
"prepare": "simple-git-hooks",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check .",
"fix": "biome check --write .",
"force-fix": "biome check --write --unsafe .",
"fix:staged": "biome check --write --staged --no-errors-on-unmatched && git update-index --again"
},
"keywords": [],
"author": "",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "bun@1.3.0",
"devDependencies": {
"@biomejs/biome": "2.0.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "bun run fix:staged"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.0.0"
}
}