-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.6 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.6 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
96
97
98
99
100
101
102
{
"type": "module",
"name": "pause-ai",
"private": true,
"packageManager": "pnpm@9.14.4",
"scripts": {
"clean": "tsx scripts/clean.ts",
"inlang:settings": "tsx scripts/inlang-settings.ts",
"l10n": "tsx scripts/l10n/run",
"dev": "tsx scripts/l10n/run --dryRun && vite dev --host 0.0.0.0",
"build": "cross-env NODE_ENV=production node scripts/filter-build-log.js \"tsx scripts/l10n/run && vite build --emptyOutDir=false && run-s _postbuild:*\"",
"netlify": "echo '📦 Netlify CLI vs Standard Preview:\n\n• Fast preview (no Netlify features):\n pnpm build && pnpm preview\n\n• Test with Netlify runtime (edge functions, redirects):\n netlify serve (rebuilds first!)\n\n• Development with Netlify features:\n pnpm dev (terminal 1) + netlify dev (terminal 2)\n\nNote: Install with npm install -g netlify-cli'",
"_postbuild:pagefind": "tsx scripts/create-pagefind-index.ts",
"_postbuild:exclude": "tsx scripts/exclude-from-edge-function.ts",
"_postbuild:caching": "tsx scripts/opt-in-to-caching.ts",
"_postbuild:l10ntamer": "tsx scripts/l10ntamer.ts",
"test": "vitest",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky",
"sync": "svelte-kit sync"
},
"devDependencies": {
"@inlang/paraglide-js": "^2.1.0",
"@sveltejs/adapter-netlify": "^5.0.2",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/escape-html": "^1.0.4",
"@types/glidejs__glide": "^3.6.6",
"@types/js-cookie": "^3.0.6",
"@types/minimatch": "^5.1.2",
"@types/minimist": "^1.2.5",
"@types/node": "^24.0.3",
"@types/remark-heading-id": "^1.0.0",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"cross-env": "^7.0.3",
"dotenv": "^16.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.46.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"mdsvex": "^0.11.2",
"minimatch": "^9.0.5",
"minimist": "^1.2.8",
"npm-run-all2": "^6.2.6",
"openai": "^4.104.0",
"p-queue": "^8.1.0",
"prettier": "^3.6.0",
"prettier-plugin-svelte": "^3.4.0",
"remark-heading-id": "^1.0.1",
"remove-markdown": "^0.5.5",
"simple-git": "^3.28.0",
"svelte": "^4.2.20",
"svelte-check": "^4.2.2",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vitest": "^2.1.9"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.54.0",
"@fontsource/roboto-slab": "^5.2.6",
"@fontsource/saira-condensed": "^5.2.6",
"@glidejs/glide": "~3.6.2",
"@pagefind/default-ui": "^1.3.0",
"@prgm/sveltekit-progress-bar": "^2.0.0",
"@sveltejs/enhanced-img": "~0.3.10",
"@turf/distance": "^7.2.0",
"@types/mapbox-gl": "^2.7.21",
"airtable": "^0.12.2",
"axios": "^1.10.0",
"clipboard-polyfill": "^4.1.1",
"easy-web-worker": "^7.0.2",
"escape-html": "^1.0.3",
"github-slugger": "^2.0.0",
"html-to-image": "^1.11.13",
"lucide-svelte": "^0.325.0",
"maplibre-gl": "^5.6.0",
"maplibregl-mapbox-request-transformer": "^0.0.2",
"pagefind": "^1.3.0",
"rehype-slug": "^5.1.0",
"remark-toc": "^9.0.0",
"remark-unwrap-images": "^3.0.1",
"shiki": "^0.14.7",
"snakecase-keys": "^8.0.1",
"svelte-file-dropzone": "^2.0.9",
"svelte-french-toast": "^1.2.0",
"svelte-loading-spinners": "^0.3.6",
"svelte-markdown": "^0.4.1",
"svelte-toc": "^0.5.9",
"ua-parser-js": "^1.0.40"
}
}