-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.51 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.51 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
{
"name": "border-code",
"version": "1.0.0",
"workspaces": [
"packages/**"
],
"scripts": {
"format": "bunx --bun @biomejs/biome format --write",
"lint": "bunx --bun @biomejs/biome lint --write",
"dev:cli": "bun run --watch packages/cli/src/index.tsx",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"build:mac": "bun build packages/cli/src/index.tsx --compile --outfile dist/border-code-macos --target bun-darwin-arm64 --external @opentui/core-darwin-arm64",
"build:mac-x64": "bun build packages/cli/src/index.tsx --compile --outfile dist/border-code-macos-x64 --target bun-darwin-x64 --external @opentui/core-darwin-x64",
"build:linux": "bun build packages/cli/src/index.tsx --compile --outfile dist/border-code-linux --target bun-linux-x64 --external @opentui/core-linux-x64 --external @opentui/core-linux-x64-musl",
"build:linux-arm": "bun build packages/cli/src/index.tsx --compile --outfile dist/border-code-linux-arm --target bun-linux-arm64 --external @opentui/core-linux-arm64 --external @opentui/core-linux-arm64-musl",
"build:windows": "bun build packages/cli/src/index.tsx --compile --outfile dist/border-code-windows.exe --target bun-windows-x64 --external @opentui/core-win32-x64"
},
"devDependencies": {
"@biomejs/biome": "2.4.16"
},
"dependencies": {
"better-sqlite3": "^12.10.0",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"ora": "^9.4.0",
"react-router": "^7.17.0"
}
}