-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·106 lines (106 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·106 lines (106 loc) · 3.63 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
{
"name": "bmi-stellar",
"private": true,
"version": "21.5.0",
"type": "module",
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"start": "vite preview --host",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .svelte,.js,.ts",
"lint:fix": "eslint . --ext .svelte,.js,.ts --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest --run",
"test:fast": "vitest run --exclude='**/crypto*.test.ts' --exclude='**/history-io*.test.ts'",
"test:crypto": "vitest run src/lib/utils/__tests__/crypto.test.ts src/lib/utils/__tests__/history-io.test.ts",
"test:ci": "vitest run --pool=forks --maxWorkers=2",
"audit:loc": "bun run scripts/check-loc.ts",
"audit:headers": "bun run scripts/check-headers.ts",
"audit:pwa-offline": "bun run scripts/check-pwa-offline-shell.ts",
"audit:branding": "bun run scripts/check-branding.ts",
"audit:deps": "bun audit",
"clean": "rm -rf .svelte-kit build dist node_modules/.cache",
"type-check": "svelte-check --tsconfig ./tsconfig.json",
"build:analyze": "vite build --mode analyze",
"deploy": "bun run build && bun run preview",
"build:optimized": "NODE_ENV=production vite build --mode production",
"analyze": "vite build --mode analyze",
"verify": "bun run format:check && bun run audit:loc && bun run audit:headers && bun run audit:branding && bun run audit:pwa-offline && bun run check && bun run lint && bun run test:run && bun run build",
"bmi-update-version": "bun run scripts/bmi-update-version.ts",
"bmi-bump:patch": "bun run scripts/bmi-update-version.ts patch",
"bmi-bump:minor": "bun run scripts/bmi-update-version.ts minor",
"bmi-bump:major": "bun run scripts/bmi-update-version.ts major"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/kit": "2.60.1",
"@sveltejs/vite-plugin-svelte": "7.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/bun": "^1.3.14",
"autoprefixer": "^10.5.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.19.0",
"globals": "^17.6.0",
"jsdom": "29.1.1",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.2",
"rollup-plugin-visualizer": "^7.0.1",
"svelte": "5.55.9",
"svelte-check": "^4.5.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vite": "8.0.13",
"vitest": "4.1.7"
},
"keywords": [
"bmi",
"bmi-calculator",
"body-mass-index",
"tdee",
"body-fat-estimate",
"health-tracker",
"fitness",
"pwa",
"offline",
"encrypted-backup",
"sveltekit",
"typescript",
"privacy-first",
"responsive"
],
"author": "rezky_nightky (oxyzenQ)",
"license": "GPL-3.0",
"engines": {
"node": ">=22 <25"
},
"packageManager": "bun@1.3.11",
"description": "Privacy-first BMI, TDEE, and body-composition companion with offline support, encrypted backups, progress charts, and responsive Stellar UI.",
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@noble/hashes": "2.2.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"esbuild": "^0.28.1",
"lucide-svelte": "^1.0.1"
},
"overrides": {
"cookie": "0.7.2",
"esbuild": "^0.28.1"
}
}