-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.91 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
{
"name": "omul",
"version": "1.0.0",
"license": "AGPL-3.0-only OR LicenseRef-omul-Commercial",
"type": "module",
"//overrides": "exceljs asks for unzipper@^0.10.11, whose transitive binary -> buffers@0.1.1 states no license anywhere and which bun build inlines into dist/server/index.js. unzipper@0.11 dropped binary, and with it buffers. Forcing it past exceljs's range is safe because nothing here reaches the code that uses it: unzipper is required by exceljs's streaming reader alone, while every read in this repository goes through workbook.xlsx.load(), which uses jszip. Full reasoning in NOTICE.md section 6; re-check this pin whenever exceljs moves.",
"overrides": {
"unzipper": "^0.11.6"
},
"scripts": {
"dev": "bun --watch server/index.ts",
"dev:client": "bunx vite",
"build": "bunx vite build && NODE_ENV=production bun build server/index.ts --outdir dist/server --target bun",
"start": "NODE_ENV=production bun dist/server/index.js",
"preview:email": "bun scripts/email-preview.ts"
},
"dependencies": {
"@ai-sdk/google": "^3.0.64",
"@better-auth/api-key": "^1.6.19",
"@binaryplease/zodstore": "^0.4.2",
"@elysiajs/openapi": "^1.4.15",
"@fontsource-variable/figtree": "^5.3.0",
"@fontsource/dm-mono": "^5.2.5",
"@react-email/components": "^1.0.12",
"@react-email/render": "^2.0.9",
"ai": "^6.0.168",
"better-auth": "^1.6.19",
"elysia": "^1.3.0",
"exceljs": "^4.4.0",
"lucide-react": "^1.21.0",
"pdf-lib": "^1.17.1",
"qrcode-generator": "^2.0.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.2.0",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.25.2",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/bun": "^1.3.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.9"
}
}