-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.93 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.93 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
{
"name": "rvgeo",
"version": "2.0.91",
"description": "RVGeo is a frontend TypeScript library for simple spatial data computation and visualization.",
"main": "./dist/rvgeo.umd.cjs",
"module": "./dist/rvgeo.js",
"exports": {
".": {
"import": "./dist/rvgeo.js",
"require": "./dist/rvgeo.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"type": "module",
"keywords": [
"Geographic",
"GIS",
"WebMap",
"GeoJSON",
"Geometry"
],
"author": "PZQ",
"license": "MIT",
"homepage": "https://pzq123456.github.io/RVGeo/",
"repository": {
"type": "git",
"url": "git+https://github.com/pzq123456/RVGeo.git"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"docs": "typedoc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@deck.gl/core": "^9.1.0",
"@deck.gl/geo-layers": "^9.1.0",
"@deck.gl/layers": "^9.1.0",
"@deck.gl/mapbox": "^9.1.0",
"@element-plus/icons-vue": "^2.3.1",
"csv-parse": "^5.6.0",
"d3": "^7.9.0",
"element-plus": "^2.9.4",
"lodash": "^4.17.21",
"maplibre-gl": "^5.0.0",
"markdown-it-mathjax3": "^4.3.2",
"pinia": "^2.3.1",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.0",
"typedoc-vitepress-theme": "^1.1.1",
"typescript": "latest",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "latest",
"vitepress": "latest",
"vitest": "latest",
"vue-draggable-plus": "^0.6.0"
},
"dependencies": {
"axios": "^1.6.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"immer": "^10.1.1",
"robust-predicates": "^3.0.2",
"vite-plugin-dts": "latest"
}
}