Initial commit

This commit is contained in:
zyp
2026-05-22 16:13:20 +08:00
commit b3089a254e
1444 changed files with 372077 additions and 0 deletions

141
package.json Normal file
View File

@@ -0,0 +1,141 @@
{
"name": "mars3d-vue-project",
"version": "3.6.0",
"description": "在Vue3技术栈下的Mars3D平台 基础项目",
"scripts": {
"dev": "vite",
"serve": "npm run clean-cache && vite --host",
"clean-cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean-lib": "rimraf node_modules",
"preview": "vite preview",
"build": "npm run lint && vite build",
"build:dev": "node --max_old_space_size=1024000 ./node_modules/vite/bin/vite.js build",
"serve:dist": "http-server ./dist",
"lint": "vue-tsc --noEmit --skipLibCheck && npm run eslint",
"eslint": "eslint ./src/**/*.{js,vue,ts} --fix",
"prepare": "husky install"
},
"type": "module",
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@icon-park/svg": "^1.4.2",
"@mars3d/heatmap.js": "^2.0.7",
"@turf/turf": "^6.5.0",
"@vueuse/core": "^13.0.0",
"ailabel": "^5.1.15",
"amfe-flexible": "^2.2.1",
"ant-design-vue": "^4.0.7",
"axios": "^1.5.1",
"clipboard": "^2.0.11",
"core-js": "^3.33.1",
"cron-parser": "4.9.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"dom-to-image": "^2.6.0",
"echarts": "^5.4.3",
"echarts-gl": "^2.0.9",
"echarts-liquidfill": "^3.1.0",
"flv-extend": "^0.3.0",
"flv.js": "^1.6.2",
"font-awesome": "^4.7.0",
"heatmap.js": "^2.0.5",
"highlight.js": "^11.10.0",
"html2canvas": "^1.4.1",
"js-audio-recorder": "^1.0.7",
"js-base64": "^3.7.7",
"kml-geojson": "^1.2.2",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mapv": "^2.0.62",
"markdown-it": "^14.1.0",
"mars3d": "file:packages/mars3d-3.9.2",
"mars3d-cesium": "~1.126.0",
"mars3d-echarts": "~3.9.0",
"mars3d-heatmap": "~3.9.0",
"mars3d-mapv": "~3.9.0",
"mars3d-space": "~3.9.0",
"mars3d-tdt": "~3.9.0",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"nprogress": "^0.2.0",
"postcss-pxtorem": "^6.1.0",
"qrcode": "^1.5.4",
"reconnecting-websocket": "^4.4.0",
"rimraf": "^6.0.1",
"uuid": "^9.0.1",
"v-viewer": "^3.0.21",
"vconsole": "^3.15.1",
"video.js": "^8.10.0",
"viewerjs": "^1.11.7",
"vue": "^3.3.10",
"vue-color-kit": "^1.0.6",
"vue-drag-resize": "1.5.4",
"vue-router": "^4.2.5",
"vue3-count-to": "^1.1.2",
"vuedraggable-es": "^4.1.1",
"vuex": "^4.1.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@vitejs/plugin-legacy": "^5.2.0",
"@vitejs/plugin-vue": "^4.5.1",
"@vue/eslint-config-typescript": "^12.0.0",
"code-inspector-plugin": "^1.2.10",
"consola": "^3.2.3",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"fs-extra": "^11.1.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.70.0",
"serve-static": "^1.15.0",
"standard": "^17.1.0",
"terser": "^5.25.0",
"typescript": "~5.2.2",
"vite": "^5.1.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mars3d": "^4.2.0",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^1.8.24"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/marsgis/mars3d-vue-project.git"
},
"bugs": {
"url": "https://github.com/marsgis/mars3d-vue-project/issues",
"email": "wh@marsgis.cn"
},
"keywords": [
"marsgis",
"mars3d",
"cesium",
"vue",
"vue3",
"gis",
"webgis"
],
"author": "火星科技",
"license": "Apache-2.0",
"homepage": "http://mars3d.cn",
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"npm run eslint"
]
}
}