-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "mailpal",
"version": "0.0.1",
"private": true,
"license": "GPL-3.0-only",
"author": "Maximilian Schiller <github@mxis.ch>",
"description": "A privacy-focused email forwarding service built on Cloudflare Workers",
"repository": {
"type": "git",
"url": "https://github.com/betahuhn/mailpal.git"
},
"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",
"deploy:frontend": "npm run build && wrangler pages deploy",
"deploy:worker": "wrangler deploy --cwd email-worker",
"deploy": "npm run deploy:frontend && npm run deploy:worker"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"@internationalized/date": "^3.12.0",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"wrangler": "^4.76.0"
},
"dependencies": {
"bits-ui": "^2.16.3",
"iron-session": "^8.0.4"
},
"type": "module"
}