-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.08 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
{
"name": "kit",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@10.9.8",
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/sync-vendor.mjs",
"build": "next build",
"postbuild": "node scripts/prune-export.mjs && node scripts/sw-precache.mjs",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "node scripts/sync-vendor.mjs"
},
"dependencies": {
"@cantoo/pdf-lib": "^2.9.1",
"@ffmpeg/core": "0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-progress": "^1.1.12",
"@radix-ui/react-slider": "^1.4.3",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.3",
"@scritto/react": "^0.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^9.0.0",
"fireworks-js": "^2.10.8",
"jsqr": "^1.4.0",
"jszip": "^3.10.1",
"lucide-react": "^1.37.0",
"marked": "^18.0.11",
"next": "16.3.3",
"next-intl": "4.14.1",
"next-themes": "^0.4.6",
"papaparse": "^5.7.0",
"pdfjs-dist": "6.3.289",
"qrcode": "^1.5.4",
"react": "19.2.8",
"react-dom": "19.2.8",
"smol-toml": "^1.8.0",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"turndown": "^7.2.4",
"yaml": "^2.9.0",
"zustand": "^5.0.15"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/node": "24.13.3",
"@types/papaparse": "^5.5.2",
"@types/qrcode": "^1.5.6",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@types/turndown": "^5.0.6",
"@vitest/coverage-v8": "^4.1.11",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.5",
"eslint-config-next": "16.3.3",
"jsdom": "^30.0.1",
"tailwindcss": "^4",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
}
}