-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1010 Bytes
/
package.json
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
{
"name": "@cvyl/apple-health-parser",
"version": "1.0.5",
"description": "A custom XML parser for Apple Health exports with visualization capabilities.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cvyl/apple-health-parser.git"
},
"bin": {
"apple-health-xml-parser": "dist/index.js",
"ahxp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"start": "npm run build && node dist/index.js"
},
"keywords": [
"apple-health",
"xml-parser",
"health-data",
"chartjs",
"typescript"
],
"author": "",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"canvas": "^2.11.2",
"chart.js": "^3.9.1",
"chartjs-node-canvas": "^4.1.6",
"xml-stream": "^0.4.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}