-
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.96 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.96 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": "earlybird-workout",
"version": "0.7.1",
"description": "",
"type": "module",
"scripts": {
"dev": "vite dev",
"dev:ios": "tauri ios dev \"iPhone 16 Pro\"",
"build": "vite build",
"build:ios": "tauri ios build",
"build:appstore": "tauri ios build --export-method app-store-connect",
"publish:appstore": "xcrun altool --upload-app --type ios --file \"src-tauri/gen/apple/build/arm64/Workouts.ipa\" --apiKey APP_STORE_API_KEY --apiIssuer APP_STORE_API_ISSUER",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"lint": "eslint . && prettier --check .",
"format": "prettier --write ."
},
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@tabler/icons-svelte": "^3.35.0",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-dialog": "~2.4.0",
"@tauri-apps/plugin-haptics": "^2.3.0",
"dexie": "^4.2.0",
"dexie-cloud-addon": "^4.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.42.1",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@tailwindcss/vite": "^4.1.13",
"@tauri-apps/cli": "^2.8.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.12.3",
"globals": "^16.4.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "^5.38.10",
"svelte-check": "^4.3.1",
"tailwindcss": "^4.1.13",
"typescript": "~5.7.3",
"typescript-eslint": "^8.44.0",
"vite": "^6.3.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}