forked from better-auth/better-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
57
58
59
60
61
{
"name": "@better-hub/monorepo",
"private": true,
"description": "A better place to collaborate on code — for humans and agents",
"keywords": [
"ai-assistant",
"better-auth",
"code-review",
"developer-tools",
"github",
"pull-requests"
],
"homepage": "https://better-hub.com",
"bugs": {
"url": "https://github.com/better-auth/better-hub/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/better-auth/better-hub.git"
},
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"go": "bun run",
"build": "bun run --workspaces build",
"dev": "bun run --workspaces dev",
"lint": "oxlint apps packages",
"lint:fix": "oxlint --fix apps packages",
"fmt": "oxfmt --ignore-path .oxfmtignore apps packages *.json *.yaml",
"fmt:check": "oxfmt --ignore-path .oxfmtignore --check apps packages *.json *.yaml",
"typecheck": "bun -r exec tsc --noEmit",
"check": "bun lint && bun fmt:check && bun typecheck",
"fix": "bun lint:fix && bun fmt",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@types/node": "^25.3.0",
"lint-staged": "^16.2.7",
"oxfmt": "^0.34.0",
"oxlint": "^1.43.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.7.0"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxfmt --write",
"oxlint --fix"
],
"*.json": [
"oxfmt --write"
]
},
"packageManager": "bun@1.3.5"
}