-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 934 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 934 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
{
"name": "ingit-vibe",
"version": "0.4.1",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "bun run --filter '@ingit/server' dev & bun run --filter '@ingit/client' dev & wait",
"dev:client": "bun run --filter '@ingit/client' dev",
"dev:site": "bun run --filter '@ingit/site' dev",
"build": "bun run --filter '*' build",
"build:site": "bun run --filter '@ingit/site' build",
"build:packages": "bun run --filter '@ingit/rpc-contract' build && bun run --filter '@ingit/git-core' build && bun run --filter '@ingit/graph-core' build",
"cli:release": "bun run --filter '@ingit/cli' release",
"release": "bun scripts/release.ts",
"typecheck": "tsc --build && tsc -p tsconfig.scripts.json",
"bump": "bunx npm-check-updates -u --workspaces --root && bun install"
},
"devDependencies": {
"@types/bun": "^1.4.0",
"typescript": "^7.0.2"
}
}