-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
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
{
"name": "garmin-parser",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "ts-node src/index.ts",
"serve": "node dist/server.js",
"dev:server": "ts-node src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"garmin",
"fitness",
"health",
"api"
],
"author": "Eric Lee",
"license": "MIT",
"description": "TypeScript client and REST API for fetching health and fitness data from Garmin Connect",
"dependencies": {
"cli-progress": "^3.12.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"garmin-connect": "^1.6.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}