-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.3 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
103
104
105
106
107
108
109
110
111
112
{
"name": "diadem",
"version": "0.8.0",
"license": "AGPL-3.0-only",
"type": "module",
"packageManager": "pnpm@9.15.9",
"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.6.0",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-node": "^5.2.11",
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^18",
"drizzle-kit": "^0.30.5",
"postcss": "^8.4.49",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.55.1",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.0.0",
"vite": "^8.0.0",
"vitest": "^2"
},
"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": "^6.7.1",
"@inlang/paraglide-js": "^2.6.0",
"@isaacs/ttlcache": "^1.4.1",
"@lucide/svelte": "^1.22.0",
"@msgpack/msgpack": "^3.1.3",
"@node-rs/argon2": "^2.0.2",
"@nozbe/microfuzz": "^1.0.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@resvg/resvg-js": "^2.6.2",
"@sveltejs/adapter-cloudflare": "^4.9.0",
"@tailwindcss/postcss": "^4.2.1",
"@tailwindcss/vite": "^4.2.1",
"@turf/turf": "^7.2.0",
"@types/geojson": "^7946.0.15",
"better-auth": "^1.5.4",
"bits-ui": "^2.18.1",
"chalk": "^5.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.40.0",
"emojilib": "^4.0.2",
"maplibre-gl": "^5.14.0",
"mode-watcher": "^1.1.0",
"mysql2": "^3.12.0",
"rate-limiter-flexible": "^11.0.0",
"runed": "^0.37.1",
"s2js": "^1.43.6",
"satori": "^0.26.0",
"satori-html": "^0.3.2",
"sharp": "^0.34.5",
"svelte-maplibre": "1.2.5",
"tailwind-merge": "^2.5.5",
"toml": "^3.0.0",
"uicons.js": "^2.2.0",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.1.12"
},
"engines": {
"node": "^22"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
},
"patchedDependencies": {
"drizzle-kit@0.30.5": "patches/drizzle-kit@0.30.5.patch"
}
}