-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "pulse-workout-planner",
"private": true,
"version": "0.1.3",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"test": "bun test",
"test:watch": "bun test --watch",
"release:check": "bun scripts/check-release.ts",
"verify": "bun run release:check && bun run check && bun test && bun run build",
"mobile:sync": "bun run build && cap sync android",
"mobile:run": "bun run mobile:sync && cap run android",
"android:apk": "bun run mobile:sync && cd android && ./gradlew assembleDebug",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@capacitor/cli": "^8.5.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.37.0",
"@sveltejs/vite-plugin-svelte": "^6.1.0",
"@types/bun": "^1.3.14",
"fake-indexeddb": "^6.2.5",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.38.0",
"svelte-check": "^4.3.1",
"typescript": "^5.9.2",
"vite": "^7.1.3"
},
"dependencies": {
"@capacitor/android": "^8.5.0",
"@capacitor/app": "^8.1.1",
"@capacitor/core": "^8.5.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/share": "^8.0.1",
"@capacitor/status-bar": "^8.0.3",
"@material/web": "2.4.1",
"lucide-svelte": "^1.0.1"
}
}