-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "@mstuart/vitals",
"version": "0.1.1",
"description": "Local-first archive and baseline-deviation detector for Google Health API v4 (Fitbit, Pixel Watch) data",
"keywords": [
"fitbit",
"google-health",
"health",
"quantified-self",
"sqlite",
"mcp",
"cli",
"hrv",
"sleep"
],
"homepage": "https://github.com/mstuart/vitals#readme",
"bugs": {
"url": "https://github.com/mstuart/vitals/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mstuart/vitals.git"
},
"license": "MIT",
"author": "Mark Stuart",
"type": "module",
"bin": {
"vitals": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "ultracite check",
"fix": "ultracite fix",
"record-fixtures": "node scripts/record-fixtures.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"vitals": "node --experimental-strip-types src/cli/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"better-sqlite3": "^13.0.3",
"commander": "^13.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.0",
"typescript": "^5.7.0",
"ultracite": "7.10.2",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}