-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"name": "cossistant",
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "sh -c 'docker compose up -d && turbo run dev'",
"lint": "turbo run lint",
"docs:links": "npx --yes markdown-link-check@3.11.2 packages/react/README.md --config docs/markdown-link-check.json",
"check": "npx ultracite@latest check",
"fix": "bunx ultracite fix",
"check:ai-pipeline-hard-cut": "bash scripts/checks/ai-pipeline-hard-cut.sh",
"check:browser-embed-size": "bun scripts/checks/browser-embed-size.ts",
"check-types": "bun run check:ai-pipeline-hard-cut && turbo run check-types",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "turbo run build --filter=@cossistant/browser... --filter=@cossistant/next... --filter=facehash && changeset publish",
"release": "bun run packages/release/src/index.ts create",
"billing:backfill-free-subscriptions": "bun scripts/billing/backfill-free-subscriptions.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postal-mime": "^2.4.4",
"prettier": "^3.8.1",
"tsdown": "^0.16.8",
"tsx": "4.20.5",
"turbo": "^2.7.5",
"typescript": "5.9.2",
"ultracite": "5.6.4"
},
"engines": {
"node": ">=20.9.0"
},
"packageManager": "bun@1.2.22",
"workspaces": [
"apps/*",
"examples/*",
"packages/*",
"tinybird"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.975.0",
"@polar-sh/better-auth": "^1.8.1",
"@polar-sh/hono": "^0.5.3",
"@polar-sh/nextjs": "^0.9.3",
"@polar-sh/sdk": "^0.44.0",
"better-auth": "^1.4.17",
"rolldown": "^1.0.0-rc.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,md,mdx}": [
"bunx ultracite fix"
]
},
"overrides": {
"@ai-sdk/provider": "3.0.8",
"@polar-sh/sdk": "^0.44.0"
}
}