-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) 路 2.71 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) 路 2.71 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
{
"name": "diadem",
"version": "0.9.0",
"license": "AGPL-3.0-only",
"private": true,
"type": "module",
"packageManager": "pnpm@11.25.0",
"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",
"format": "prettier --write .",
"lint": "prettier --check .",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"test": "vitest run",
"test:watch": "vitest",
"cap:sync": "cap sync",
"cap:sync:android": "cap sync android",
"cap:sync:ios": "cap sync ios",
"build:native": "BUILD_TARGET=native vite build",
"build:native:android": "pnpm run build:native && cap sync android",
"build:native:ios": "pnpm run build:native && cap sync ios",
"native:android:nogms": "bash scripts/native/build-nogms.sh"
},
"devDependencies": {
"@capacitor/cli": "^7",
"@inlang/paraglide-js": "^2.25.0",
"@sveltejs/adapter-node": "^5.5.7",
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2.70.3",
"@sveltejs/vite-plugin-svelte": "^7.3.0",
"@tailwindcss/vite": "^4.3.3",
"@types/geojson": "^7946.0.16",
"@types/node": "^24.13.3",
"drizzle-kit": "^0.31.10",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"svelte": "^5.57.0",
"svelte-check": "^4.7.6",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "^5.0.0"
},
"dependencies": {
"@capacitor/android": "^7",
"@capacitor/app": "^7",
"@capacitor/browser": "^7",
"@capacitor/clipboard": "^7",
"@capacitor/core": "^7",
"@capacitor/geolocation": "^7",
"@capacitor/ios": "^7",
"@capacitor/preferences": "^7",
"@capacitor/share": "^7",
"@capacitor/status-bar": "^7",
"@fragaria/address-formatter": "^7.0.0",
"@isaacs/ttlcache": "^2.1.5",
"@lucide/svelte": "^1.40.0",
"@msgpack/msgpack": "^3.1.3",
"@noble/hashes": "^2.4.0",
"@nozbe/microfuzz": "^1.0.0",
"@oslojs/encoding": "^1.1.0",
"@resvg/resvg-js": "^2.6.2",
"@turf/turf": "^7.4.0",
"better-auth": "1.6.18",
"bits-ui": "^2.19.0",
"chalk": "^6.0.0",
"clsx": "^2.1.1",
"dompurify": "^3.4.14",
"drizzle-orm": "^0.45.2",
"emojilib": "^4.0.3",
"maplibre-gl": "^6.7.0",
"mode-watcher": "^1.1.0",
"mysql2": "^3.24.3",
"rate-limiter-flexible": "^11.2.0",
"runed": "^0.37.1",
"s2js": "^1.44.0",
"satori": "^0.33.4",
"satori-html": "^0.3.2",
"sharp": "^0.35.4",
"svelte-maplibre": "^2.0.0",
"toml": "^5.0.0",
"uicons.js": "^3.1.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.5.4"
},
"engines": {
"node": ">=24"
}
}