forked from davis7dotsh/better-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.06 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.06 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
62
{
"name": "@btca/repo",
"author": "Ben Davis",
"version": "0.1.4",
"description": "CLI tool for asking questions about technologies using OpenCode",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bmdavis419/better-context"
},
"workspaces": [
"apps/*",
"packages/*"
],
"keywords": [
"cli",
"ai",
"docs"
],
"engines": {
"bun": ">=1.1.0"
},
"packageManager": "[email protected]",
"scripts": {
"web": "turbo dev --filter=@btca/web",
"chat-web": "turbo dev --filter=@btca/chat-web",
"cli": "bun run apps/cli/src/index.ts",
"server": "bun --watch apps/server/src/index.ts",
"sandbox": "bun run apps/sandbox/src/index.ts",
"sandbox:snapshot": "bun run apps/sandbox/src/snapshot.ts",
"build:all": "turbo build",
"build:cli": "turbo build --filter=btca",
"build:web": "turbo build --filter=@btca/web",
"build:chat-web": "turbo build --filter=@btca/chat-web",
"check:all": "turbo check",
"check:cli": "turbo check --filter=btca",
"check:web": "turbo check --filter=@btca/web",
"check:chat-web": "turbo check --filter=@btca/chat-web",
"check:shared": "turbo check --filter=@btca/shared",
"check:server": "turbo check --filter=btca-server",
"check:sandbox": "turbo check --filter=btca-sandbox",
"format:all": "turbo format",
"format:cli": "turbo format --filter=btca",
"format:web": "turbo format --filter=@btca/web",
"format:chat-web": "turbo format --filter=@btca/chat-web",
"format:shared": "turbo format --filter=@btca/shared",
"format:server": "turbo format --filter=btca-server",
"format:sandbox": "turbo format --filter=btca-sandbox",
"test:server": "turbo test --filter=btca-server",
"clean": "find . -type d \\( -name node_modules -o -name .svelte-kit -o -name .turbo -o -name .vercel \\) -prune -exec rm -rf {} +"
},
"devDependencies": {
"@opentui/solid": "^0.1.72",
"@types/bun": "^1.3.6",
"@typescript/native-preview": "^7.0.0-dev.20260114.1",
"turbo": "^2.7.4",
"typescript": "^5.9.3",
"prettier": "^3.8.0",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2"
}
}