-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 884 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 884 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
{
"name": "main",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf node_modules && git clean -fdXq",
"build": "CI_BUILD=true bun scripts/build.ts",
"ci": "bun run scripts/ci.ts",
"format": "bun --filter './packages/*' format && oxfmt --write ./*.json && oxfmt --write ./scripts/*.ts",
"lint": "bun --filter './packages/*' lint",
"squash": "base_branch=${1:-main} && git fetch origin $base_branch && branch=$(git branch --show-current) && git checkout $branch && git reset $(git merge-base origin/$base_branch $branch) && git add -A"
},
"devDependencies": {
"@types/bun": "latest",
"@types/tcp-port-used": "1.0.4",
"lefthook": "1.7.18",
"oxfmt": "0.28.0",
"oxlint": "1.43.0",
"tcp-port-used": "1.0.2",
"typescript": "5.8.2"
},
"trustedDependencies": [
"lefthook",
"mongodb-memory-server"
]
}