-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.18 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
{
"name": "toolboximage.com",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"gen-og-images": "node scripts/generate-og-images.mjs",
"build": "npm run gen-og-images && astro build",
"preview": "astro preview",
"deploy": "npm run gen-og-images && astro build && npx wrangler pages deploy dist --project-name toolboximage-com --commit-dirty=true",
"astro": "astro",
"test": "npx playwright test",
"test:unit": "vitest run",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:full": "npm run build && sleep 1 && npx astro preview --port 4321 & sleep 3 && npx playwright test; npx astro preview --port 4321 --stop 2>/dev/null; true"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.3",
"@bunnio/rembg-web": "^1.0.2",
"@tailwindcss/vite": "^4.3.1",
"@xenova/transformers": "^2.17.2",
"astro": "^7.0.3",
"exifr": "^7.1.3",
"onnxruntime-web": "^1.27.0",
"piexifjs": "^1.0.6",
"qrcode": "^1.5.4",
"tailwindcss": "^4.3.1"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"vitest": "^4.1.9"
}
}