-
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.1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.1 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": "content-to-pdf",
"private": true,
"version": "2.7.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && ow main workers upload content-to-pdf ./build",
"deploy:dev": "vite build && ow main workers upload content-to-pdf ./build",
"postinstall": "bun scripts/patch-adapter.ts",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@openworkers/adapter-sveltekit": "0.5.5",
"@openworkers/workers-types": "^0.1.9",
"@sveltejs/kit": "^2.51.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.1.18",
"@types/bun": "^1.3.9",
"@types/markdown-it": "^14.1.2",
"bun-types": "^1.3.9",
"svelte": "^5.51.0",
"svelte-check": "^4.4.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"lucide-svelte": "^0.564.0",
"markdown-it": "^14.1.0",
"punycode.js": "^2.3.1",
"yaml": "^2.7.0"
}
}