-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "ai-invoice-parser",
"version": "0.1.0",
"private": true,
"license": "MIT",
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "tsx --test \"**/*.test.ts\"",
"knip": "knip",
"format": "prettier --write \"**/*.{ts,tsx,css,mjs}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,css,mjs}\"",
"eval": "tsx eval/run.ts",
"eval:gen": "tsx eval/generate-samples.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "0.104.1",
"@upstash/ratelimit": "2.0.8",
"@upstash/redis": "1.38.0",
"clsx": "2.1.1",
"geist": "1.3.1",
"next": "15.3.9",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "2.6.0",
"zod": "3.24.4",
"zod-to-json-schema": "3.24.5"
},
"devDependencies": {
"@pdf-lib/fontkit": "1.1.1",
"@types/node": "20.17.6",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"autoprefixer": "10.4.20",
"knip": "6.16.1",
"pdf-lib": "1.17.1",
"postcss": "8.4.49",
"prettier": "3.8.4",
"tailwindcss": "3.4.17",
"tsx": "4.22.4",
"typescript": "5.7.2"
}
}