-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 959 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 959 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
30
31
32
33
{
"name": "based",
"private": true,
"description": "AI-first database client for SQL Server, Snowflake, and LanceDB — the agent is a participant in your workspace, not a chat box.",
"license": "MIT",
"author": "Cyrus Attoun",
"homepage": "https://github.com/Cyronius/based",
"repository": {
"type": "git",
"url": "git+https://github.com/Cyronius/based.git"
},
"bugs": {
"url": "https://github.com/Cyronius/based/issues"
},
"workspaces": [
"core",
"ui",
"shell-tauri",
"specs"
],
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:core": "bun run --cwd core dev",
"dev:ui": "bun run --cwd ui dev",
"build:ui": "bun run --cwd ui build",
"shell": "bun run --cwd shell-tauri dev",
"test": "bun run --cwd specs test",
"typecheck": "bun run --cwd core typecheck && bun run --cwd ui typecheck && bun run --cwd shell-tauri typecheck"
},
"overrides": {
"zod": "3.25.76"
}
}