Files
gpx.studio/gpx/package.json

32 lines
811 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",
2024-07-23 11:20:31 +02:00
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
2024-04-15 14:26:34 +02:00
"repository": {
"type": "git",
"url": "https://github.com/gpxstudio/gpx.studio.git",
"directory": "gpx"
},
"private": true,
"dependencies": {
2024-09-30 14:14:43 +02:00
"fast-xml-parser": "^4.5.0",
2024-05-07 18:14:47 +02:00
"immer": "^10.1.1",
2024-04-15 14:26:34 +02:00
"ts-node": "^10.9.2"
},
"devDependencies": {
2024-04-25 13:48:31 +02:00
"@types/geojson": "^7946.0.14",
2024-09-30 14:14:43 +02:00
"@types/node": "^20.16.10",
"@typescript-eslint/parser": "^8.22.0",
"prettier": "^3.4.2",
2024-09-30 14:14:43 +02:00
"typescript": "^5.6.2"
2024-09-16 11:12:31 +02:00
},
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
2024-04-15 14:26:34 +02:00
}
2024-09-30 14:14:43 +02:00
}