-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.73 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
{
"name": "domain-watcher",
"private": true,
"version": "1.1.0",
"type": "module",
"description": "Domain availability watcher built with SvelteKit",
"author": {
"name": "Nik Klemenc",
"url": "https://klemenc.si"
},
"homepage": "https://klemenc.si",
"repository": {
"type": "git",
"url": "https://github.com/Scorpio3310/domain-watcher"
},
"license": "MIT",
"keywords": [
"domain",
"watcher",
"monitor",
"checker",
"svelte",
"sveltekit",
"cloudflare"
],
"scripts": {
"dev": "vite dev",
"postbuild": "cat src/lib/cloudflare/cron.js >> .svelte-kit/cloudflare/worker.mjs",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
},
"devDependencies": {
"@iconify/svelte": "^5.2.1",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/kit": "^2.64.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.2",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"wrangler": "^4.99.0",
"zod": "^4.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"@fontsource/figtree": "^5.2.10",
"@whoisjson/whoisjson": "^1.0.4",
"date-fns": "^4.4.0",
"resend": "^6.12.4"
}
}