-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.97 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": "simulado-euf",
"version": "1.0.0",
"type": "module",
"author": "Taylor Hoffmann <taylor@hoffmann.io>",
"repository": {
"type": "git",
"url": "https://github.com/TaylorHo/simulado-euf"
},
"scripts": {
"dev": "pnpm run dev:web",
"dev:web": "vite dev",
"dev:mobile": "TARGET=mobile vite dev",
"build": "pnpm run build:web",
"build:web": "vite build",
"build:mobile": "TARGET=mobile vite build && node scripts/cleanup-mobile-build.js",
"build:app": "tauri android build --aab && pnpm get-native-libs",
"get-native-libs": "rm merged_native_libs.zip && cd ./src-tauri/gen/android/app/build/intermediates/merged_native_libs/universalRelease/mergeUniversalReleaseNativeLibs/out/lib/ && zip -r ./../../../../../../../../../../../merged_native_libs.zip ./",
"prepare": "svelte-kit sync || echo '' && git config --local core.hooksPath .hooks/",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write . && eslint --fix .",
"tauri": "tauri"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/kit": "^2.61.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tauri-apps/cli": "^2.11.2",
"@types/katex": "^0.16.8",
"@types/node": "^25.9.1",
"@types/qrcode": "^1.5.6",
"eslint": "^10.4.0",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.0.1",
"svelte": "^5.55.9",
"svelte-check": "^4.4.8",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.14"
},
"dependencies": {
"@lucide/svelte": "^1.16.0",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-opener": "~2",
"jsqr": "^1.4.0",
"katex": "^0.17.0",
"posthog-js": "^1.376.0",
"qrcode": "^1.5.4"
},
"license": "AGPL-3.0",
"engines": {
"npm": ">=11",
"pnpm": ">=10",
"node": ">=20"
}
}