-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 KB
/
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
{
"name": "activities-heatmap",
"version": "0.3.2",
"description": "A library to draw sport activities heatmap on a tile layer.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/arenevier/activities-heatmap.git"
},
"author": "Arno Renevier",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts",
"build:watch": "tsup src/index.ts --watch",
"clean": "rm -rf node_modules dist",
"typecheck": "tsc --noEmit",
"lint": "biome check --write --unsafe src && biome format src --write && biome lint src --fix"
},
"keywords": [
"heatmap"
],
"dependencies": {
"@garmin/fitsdk": "^21.141.0",
"@turf/bbox-clip": "^7.1.0",
"adm-zip": "^0.5.16",
"papaparse": "^5.4.1",
"pg": "^8.13.0",
"sax": "^1.4.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/adm-zip": "^0.5.5",
"@types/papaparse": "^5.3.15",
"@types/pg": "^8.11.10",
"@types/sax": "^1.2.7",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
}
}