@loongbao-web-gis-utils/draw-utils-grid-core 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +162 -0
- package/dist/index.js +5989 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@loongbao-web-gis-utils/draw-utils-grid-core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Web GIS 通用绘图工具核心层 — H3/GeoHash 网格绘制、要素管理、Adapter 接口定义",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "loongbao",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"gis",
|
|
10
|
+
"h3",
|
|
11
|
+
"geohash",
|
|
12
|
+
"grid",
|
|
13
|
+
"drawing",
|
|
14
|
+
"webgl"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/loongbao-web-gis-utils/draw-utils-grid"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist/"
|
|
22
|
+
],
|
|
23
|
+
"main": "./dist/index.cjs",
|
|
24
|
+
"module": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"h3-js": "^4.1.0",
|
|
38
|
+
"ngeohash": "^0.6.3"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"vite": "^6.0.0",
|
|
42
|
+
"vite-plugin-dts": "^4.0.0",
|
|
43
|
+
"vitest": "^3.0.0",
|
|
44
|
+
"@vitest/coverage-v8": "^3.0.0",
|
|
45
|
+
"prettier": "^3.0.0",
|
|
46
|
+
"typescript": "^5.6.0"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "vite build",
|
|
50
|
+
"test": "vitest run --coverage",
|
|
51
|
+
"test:watch": "vitest",
|
|
52
|
+
"lint": "prettier --check src/"
|
|
53
|
+
}
|
|
54
|
+
}
|