-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.92 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
{
"name": "Kitsy",
"private": true,
"type": "module",
"license": "Apache-2.0",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "dotenv -e .env -- sh -c \"NODE_OPTIONS='--import ./instrument.server.mjs' vite dev --port 3000\"",
"build": "vite build && (test -d .output/server && cp instrument.server.mjs .output/server || true)",
"preview": "vite preview",
"test": "vitest run",
"test:e2e": "playwright test",
"showcase:concat": "node --experimental-strip-types tests/e2e/concat-videos.ts",
"start": "node --import ./.output/server/instrument.server.mjs .output/server/index.mjs",
"format": "biome check --write .",
"lint": "biome lint",
"check": "biome check",
"postinstall": "node --experimental-strip-types scripts/stage-wasm-assets.ts"
},
"dependencies": {
"@ffmpeg/core": "^0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@imgly/background-removal": "^1.7.0",
"@imgly/background-removal-data": "https://staticimgly.com/@imgly/background-removal-data/1.7.0/package.tgz",
"@neslinesli93/qpdf-wasm": "^0.3.0",
"@sentry/tanstackstart-react": "^10.42.0",
"@tabler/icons-react": "^3.41.1",
"@tanstack/react-router": "^1.168.7",
"@tanstack/react-start": "^1.167.12",
"fflate": "^0.8.2",
"imagetracerjs": "^1.2.6",
"konva": "^10.2.3",
"node-forge": "^1.4.0",
"onnxruntime-web": "^1.21.0",
"papaparse": "^5.5.3",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.5.207",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-konva": "^19.2.3",
"serwist": "^9.5.7",
"zgapdfsigner": "^2.7.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@playwright/test": "^1.59.1",
"@serwist/vite": "^9.5.7",
"@sparticuz/chromium": "^148.0.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/devtools-vite": "^0.6.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/node-forge": "^1.3.14",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"daisyui": "^5.5.19",
"docx-preview": "^0.3.7",
"dotenv-cli": "^11.0.0",
"exceljs": "^4.4.0",
"jsdom": "^29.0.1",
"nitro": "npm:nitro-nightly@latest",
"playwright-core": "^1.59.1",
"tailwindcss": "^4.1.18",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
],
"overrides": {
"h3-v2": "npm:h3@^2.0.1-rc.20",
"brace-expansion": "5.0.8",
"minimatch": "10.2.5",
"uuid": "11.1.1"
}
},
"overrides": {
"h3-v2": "npm:h3@^2.0.1-rc.20",
"brace-expansion": "5.0.8",
"minimatch": "10.2.5",
"uuid": "11.1.1"
}
}