-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.58 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.58 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@getpochi/monorepo",
"scripts": {
"check": "npm-run-all check:default check:test check:ast-grep check:i18n",
"fix": "npm-run-all 'check:default -- --write' 'check:test -- --write'",
"check:ast-grep": "ast-grep scan",
"check:default": "biome check .",
"check:test": "biome check --config-path=./biome.test.json .",
"check:i18n": "cd packages/vscode-webui && bun check:i18n",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"tsc": "turbo tsc",
"dep-check": "bun scripts/dep-check.ts",
"prepare": "husky",
"gen:config-schema": "bun packages/common/src/configuration/gen-schema.ts",
"pre-push": "bash ./.husky/pre-push"
},
"workspaces": {
"packages": ["packages/*", "private/packages/*"],
"catalog": {
"@leeoniya/ufuzzy": "^1.0.19",
"@preact/signals-core": "^1.8.0",
"@quilted/threads": "^3.1.3",
"@google/genai": "^1.13.0",
"@slack/bolt": "^4.2.1",
"better-auth": "1.2.9",
"@daveyplate/better-auth-tanstack": "^1.3.6",
"@better-auth/stripe": "1.2.9",
"hono": "^4.7.5",
"kysely": "^0.27.6",
"moment": "^2.30.1",
"react": "^19.1.0",
"react-icons": "^5.5.0",
"remeda": "^2.21.3",
"zod": "^3.25.76",
"tslog": "^4.9.3",
"tailwindcss-animate": "^1.0.7",
"tailwindcss": "^4.0.6",
"@tailwindcss/vite": "^4.0.6",
"emittery": "^1.1.0",
"ai": "^5.0.59",
"@ai-sdk/google": "2.0.17",
"@ai-sdk/google-vertex": "3.0.34",
"@ai-sdk/openai": "^2.0.42",
"@ai-sdk/provider-utils": "3.0.10",
"@ai-sdk/openai-compatible": "^1.0.9",
"@ai-sdk/react": "^2.0.59",
"@ai-sdk/provider": "^2",
"@ai-sdk/gateway": "^1",
"@ai-sdk/anthropic": "^2.0.23",
"@hono/zod-validator": "^0.4.3",
"@livestore/adapter-cloudflare": "0.4.0-dev.22",
"@livestore/adapter-node": "0.4.0-dev.22",
"@livestore/adapter-web": "0.4.0-dev.22",
"@livestore/devtools-vite": "0.4.0-dev.22",
"@livestore/livestore": "0.4.0-dev.22",
"@livestore/peer-deps": "0.4.0-dev.22",
"@livestore/react": "0.4.0-dev.22",
"@livestore/sync-cf": "0.4.0-dev.22",
"@livestore/wa-sqlite": "0.4.0-dev.22",
"@livestore/utils": "0.4.0-dev.22",
"@livestore/common": "0.4.0-dev.22",
"bidc": "^0.0.2",
"lucide-react": "^0.542.0",
"jose": "^6.1.0",
"jsonc-parser": "3.3.1",
"base58-js": "^3.0.3",
"run-exclusive": "^2.2.19"
}
},
"devDependencies": {
"@ast-grep/cli": "^0.38.5",
"@biomejs/biome": "1.9.4",
"@wdio/cli": "^9.23.0",
"@vitest/coverage-v8": "^3.2.4",
"depcheck": "^1.4.7",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"turbo": "^2.5.5",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
},
"packageManager": "bun@1.3.4",
"trustedDependencies": ["@ast-grep/cli"],
"patchedDependencies": {
"better-auth@1.2.9": "patches/better-auth@1.2.9.patch",
"@better-auth/stripe@1.2.9": "patches/@better-auth%2Fstripe@1.2.9.patch",
"@daveyplate/better-auth-ui@2.0.12": "patches/@daveyplate%2Fbetter-auth-ui@2.0.12.patch",
"ai@5.0.15": "patches/ai@5.0.59.patch",
"jsonc-parser@3.3.1": "patches/jsonc-parser@3.3.1.patch",
"silver-fleece@1.2.1": "patches/silver-fleece@1.2.1.patch",
"ai@5.0.59": "patches/ai@5.0.59.patch",
"@ai-sdk/google-vertex@3.0.34": "patches/@ai-sdk%2Fgoogle-vertex@3.0.34.patch",
"tslog@4.9.3": "patches/tslog@4.9.3.patch",
"streamdown@1.6.10": "patches/streamdown@1.6.10.patch",
"@livestore/utils@0.4.0-dev.22": "patches/@livestore%2Futils@0.4.0-dev.22.patch"
}
}