-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.86 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mars3d-vue-project",
"version": "3.11.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",
"build2": "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": {
"@icon-park/svg": "^1.4.2",
"@turf/turf": "^7.2.0",
"ant-design-vue": "^4.2.6",
"axios": "^1.10.0",
"core-js": "^3.43.0",
"dayjs": "^1.11.13",
"echarts": "^5.6.0",
"echarts-gl": "^2.0.9",
"font-awesome": "^4.7.0",
"kml-geojson": "^2.0.1",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"mapv": "^2.0.62",
"mars3d": "~3.11.0",
"mars3d-cesium": "~1.141.0",
"mars3d-echarts": "~3.11.0",
"mars3d-heatmap": "~3.11.0",
"mars3d-mapv": "~3.11.0",
"mars3d-space": "~3.11.0",
"mars3d-tdt": "~3.11.0",
"nprogress": "^0.2.0",
"uuid": "^9.0.1",
"vue": "^3.5.20",
"vue-color-kit": "^1.0.6",
"vue-router": "^4.5.1",
"vuex": "^4.1.0"
},
"devDependencies": {
"@types/node": "^20.19.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"consola": "^3.4.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.33.0",
"fs-extra": "^11.3.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"less": "^4.3.0",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"rollup-plugin-visualizer": "^5.14.0",
"serve-static": "^1.16.2",
"standard": "^17.1.2",
"terser": "^5.43.0",
"typescript": "~5.2.2",
"vite": "^7.1.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mars3d": "^4.2.2",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^1.8.27"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.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"
]
}
}