-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 KB
/
package.json
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
{
"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": {
"markdown-it-mathjax3": "^4.3.2",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.4.0",
"typedoc-vitepress-theme": "^1.1.1",
"typescript": "latest",
"vite": "latest",
"vitepress": "latest",
"vitest": "latest"
},
"dependencies": {
"axios": "^1.6.0",
"robust-predicates": "^3.0.2",
"vite-plugin-dts": "latest"
}
}