-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.12 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
{
"name": "fletoret",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"webp-to-avif": "magick mogrify -format avif -depth 10 -define heic:speed=2 static/images/**/*.webp",
"png-to-avif": "magick mogrify -format avif -depth 10 -define heic:speed=2 static/images/**/*.png",
"png-to-webp": "magick mogrify -format webp static/images/**/*.png",
"deploy:production": "npm run build && npx wrangler pages deploy .svelte-kit/cloudflare --project-name=fletoret --branch=main",
"deploy:preview": "npm run build && npx wrangler pages deploy .svelte-kit/cloudflare --project-name=fletoret --branch=preview"
},
"devDependencies": {
"@sveltejs/adapter-cloudflare": "7.2.8",
"@sveltejs/kit": "2.60.1",
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.0.9",
"date-fns": "4.4.0",
"front-matter": "4",
"highlight.js": "11.11.1",
"markdown-it": "14.2.0",
"markdown-it-attrs": "4.3.1",
"markdown-it-footnote": "4.0.0",
"markdown-it-implicit-figures": "0.12.0",
"markdown-it-link-attributes": "4.0.1",
"slugify": "1.6.9",
"svelte": "5.55.7",
"svelte-check": "4.6.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite": "7.3.2",
"wrangler": "4.98.0"
},
"type": "module",
"overrides": {
"micromatch": {
"picomatch": "2.3.2"
},
"fdir": {
"picomatch": "4.0.4"
},
"@sveltejs/kit": {
"cookie": "0.7.2"
}
},
"dependencies": {
"@fontsource/alegreya-sans-sc": "5.2.7",
"@fontsource/alegreya-sc": "5.2.8",
"@fontsource/crimson-text": "5.2.7",
"@fontsource/im-fell-english-sc": "5.2.6",
"@fontsource/instrument-serif": "5.2.8",
"@tabler/icons-svelte": "^3.36.1",
"glob": "13.0.6",
"html-to-image": "1.11.13",
"sass": "1.100.0",
"schema-dts": "1.1.5",
"super-sitemap": "^1.0.3"
},
"module": "index.ts"
}