Files
gpx.studio/gpx/package.json

29 lines
697 B
JSON
Raw Normal View History

2024-04-15 14:26:34 +02:00
{
"name": "gpx",
"version": "1.0.0",
2024-05-04 02:18:07 +02:00
"type": "module",
"exports": "./dist/src/index.js",
2024-04-15 14:26:34 +02:00
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gpxstudio/gpx.studio.git",
"directory": "gpx"
},
"private": true,
"dependencies": {
"fast-xml-parser": "^4.3.6",
"ts-node": "^10.9.2"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
2024-04-25 13:48:31 +02:00
"@types/geojson": "^7946.0.14",
2024-04-15 14:26:34 +02:00
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
2024-05-04 02:18:07 +02:00
}