mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-30 15:20:01 +00:00
32 lines
811 B
JSON
32 lines
811 B
JSON
{
|
|
"name": "gpx",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"exports": "./dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/gpxstudio/gpx.studio.git",
|
|
"directory": "gpx"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"fast-xml-parser": "^4.5.0",
|
|
"immer": "^10.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/geojson": "^7946.0.14",
|
|
"@types/node": "^20.16.10",
|
|
"@typescript-eslint/parser": "^8.22.0",
|
|
"prettier": "^3.4.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"postinstall": "npm run build",
|
|
"lint": "prettier --check . && eslint .",
|
|
"format": "prettier --write ."
|
|
}
|
|
}
|