-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.3 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.3 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
63
64
65
{
"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": "bun@1.3.10",
"scripts": {
"dev:web": "turbo dev --filter=@btca/web",
"dev:docs": "bun run --cwd apps/docs dev",
"dev:cli": "bun run --watch apps/cli/src/index.ts",
"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",
"analytics-proxy:build": "docker build -t btca-analytics-proxy apps/analytics-proxy",
"analytics-proxy:run": "docker run --rm -p 8080:8080 -e POSTHOG_CLOUD_REGION=us btca-analytics-proxy",
"build:all": "turbo build",
"build:cli": "turbo build --filter=btca",
"build:web": "turbo build --filter=@btca/web",
"check:all": "turbo check",
"check:docs": "turbo check --filter=@btca/docs",
"check:cli": "turbo check --filter=btca",
"check:web": "turbo check --filter=@btca/web",
"check:shared": "turbo check --filter=@btca/shared",
"check:server": "turbo check --filter=btca-server",
"check:sandbox": "turbo check --filter=btca-sandbox",
"check:effectification": "bun run scripts/check-effectification.ts",
"format:all": "turbo format",
"format:cli": "turbo format --filter=btca",
"format:web": "turbo format --filter=@btca/web",
"format:shared": "turbo format --filter=@btca/shared",
"format:server": "turbo format --filter=btca-server",
"format:sandbox": "turbo format --filter=btca-sandbox",
"test:all": "turbo test",
"test:server": "turbo test --filter=btca-server",
"wipe:btca": "bun run apps/cli/src/index.ts wipe",
"clean": "find . -type d \\( -name node_modules -o -name .svelte-kit -o -name .turbo -o -name .vercel \\) -prune -exec rm -rf {} +"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@typescript/native-preview": "^7.0.0-dev.20260305.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.8.13",
"typescript": "^5.9.3"
}
}