Files
geo-tools/package.json
T
missumandCursor 88e201e50b refactor: harden deps, fix geo math, and add engineering tooling
Replace xlsx with exceljs, unify CRS/DMS logic, move pages to views with shared map/toast composables, and add Vitest/ESLint/Prettier plus docs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-12 09:26:15 +08:00

40 lines
948 B
JSON

{
"name": "geo-tools",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,vue,css,md}\""
},
"dependencies": {
"@turf/area": "^7.4.0",
"@turf/helpers": "^7.4.0",
"@turf/length": "^7.4.0",
"exceljs": "^4.4.0",
"gcoord": "^1.0.7",
"leaflet": "^1.9.4",
"lucide-vue-next": "^0.563.0",
"proj4": "^2.20.4",
"vue": "^3.5.24",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitejs/plugin-vue": "^6.0.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.9.0",
"prettier": "^3.9.6",
"vite": "^7.2.4",
"vitest": "^4.1.10"
}
}