-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 4.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "sdk-mono",
"version": "3.1.18",
"license": "Apache-2.0",
"packageManager": "bun@1.3.11",
"private": true,
"workspaces": [
"packages/*",
"docs",
"tests",
"tests/frameworks/*",
"tests/integration/*",
"tests/services/*"
],
"scripts": {
"prepare": "husky",
"build": "bunx tsc --build && bun run build:assets",
"build:assets": "cd packages/cli && bun run build:assets",
"build:packages": "bun run --filter='./packages/*' build",
"build:apps": "bun run --filter='./tests/frameworks/*' build && bun run --filter='./tests/integration/*' build && bun run --filter='./tests/services/*' build",
"build:all": "bun run build && bun run build:apps",
"test": "bun test:packages && cd packages/cli && bun run test && cd ../.. && bun test:pkginstall && bun test:create",
"test:packages": "cd packages/core && bun test && cd ../schema && bun test && cd ../server && bun test && cd ../postgres && bun test && cd ../drizzle && bun test && cd ../opencode && bun test && cd ../hono && bun test && cd ../analytics && bun test && cd ../../docs && bun test",
"test:unit": "bun run test:packages && cd packages/cli && bun run test",
"test:dev": "bash scripts/test-dev.sh",
"test:frameworks": "bash scripts/test-framework-demos.sh",
"test:create": "bun ./tests/create/basic-flow.ts && bun ./tests/create/services-build.ts",
"test:create:services": "bun ./tests/create/services-build.ts",
"test:pkginstall": "./scripts/test-package-install.sh",
"test:standalone": "cd tests/integration/standalone-backend && bun run test",
"test:services": "bun run test:services:keyvalue && bun run test:services:vector && bun run test:services:queue && bun run test:services:email && bun run test:services:db && bun run test:services:schedule && bun run test:services:task && bun run test:services:webhook && bun run test:services:sandbox",
"test:services:keyvalue": "cd tests/services/keyvalue && bun run start",
"test:services:vector": "cd tests/services/vector && bun run start",
"test:services:queue": "cd tests/services/queue && bun run start",
"test:services:email": "cd tests/services/email && bun run start",
"test:services:db": "cd tests/services/db && bun run start",
"test:services:schedule": "cd tests/services/schedule && bun run start",
"test:services:task": "cd tests/services/task && bun run start",
"test:services:webhook": "cd tests/services/webhook && bun run start",
"test:services:sandbox": "cd tests/services/sandbox && bun run start",
"typecheck:apps": "bun run --filter='./tests/integration/standalone-backend' typecheck && bun run --filter='./tests/integration/e2e-web' typecheck && bun run --filter='./tests/integration/oauth' typecheck",
"typecheck:packages": "bun run --filter='./packages/*' typecheck",
"typecheck": "bun run typecheck:apps && bun run typecheck:packages",
"clean": "rm -rf packages/*/dist tests/frameworks/*/dist tests/integration/*/dist tests/services/*/dist packages/*/*.tsbuildinfo",
"format": "bunx biome format --write .",
"lint": "bunx biome lint .",
"check": "bunx biome check --write .",
"all": "bun clean && bun format && bun lint && bun run build && bun typecheck:packages && bun run test && bun run test:standalone",
"whoami": "node packages/cli/bin/cli.js auth whoami",
"whoami:bun": "bun packages/cli/bin/cli.js auth whoami",
"cli": "bun packages/cli/src/main.ts",
"cli:built": "node packages/cli/bin/cli.js",
"knip": "bunx knip --no-progress"
},
"overrides": {
"commander": "^14.0.2",
"detect-libc": "2.1.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"better-auth": "1.5.2",
"@better-auth/api-key": "1.5.2",
"@better-auth/core": "1.5.2",
"cookie": "0.7.2",
"dompurify": "3.4.2",
"kysely": "0.29.2",
"langsmith": "0.6.0",
"mermaid": "11.15.0",
"postcss": "8.5.14",
"protobufjs": "8.2.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@playwright/test": "^1.57.0",
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260413.1",
"bun-types": "latest",
"husky": "^9.1.7",
"knip": "^6.11.0",
"playwright": "^1.57.0",
"typescript": "^6.0.2"
}
}