@openlayer-utils/draw-grid 1.0.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/README.md +356 -0
- package/dist/index.cjs +14 -0
- package/dist/index.d.ts +180 -0
- package/dist/index.js +6291 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openlayer-utils/draw-grid",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Web GIS 通用绘图工具 OpenLayer 适配层 — WebGLVectorLayer 高性能渲染",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "loongbao",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"gis",
|
|
10
|
+
"openlayer",
|
|
11
|
+
"h3",
|
|
12
|
+
"geohash",
|
|
13
|
+
"grid",
|
|
14
|
+
"drawing",
|
|
15
|
+
"webgl"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/openlayer-utils/draw-grid"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist/"
|
|
23
|
+
],
|
|
24
|
+
"main": "./dist/index.cjs",
|
|
25
|
+
"module": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.js",
|
|
31
|
+
"require": "./dist/index.cjs"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"h3-js": "^4.1.0",
|
|
39
|
+
"ngeohash": "^0.6.3"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"ol": "10.9.0",
|
|
43
|
+
"vue": "^3.5.0"
|
|
44
|
+
},
|
|
45
|
+
"peerDependenciesMeta": {
|
|
46
|
+
"ol": {
|
|
47
|
+
"optional": false
|
|
48
|
+
},
|
|
49
|
+
"vue": {
|
|
50
|
+
"optional": false
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"ol": "10.9.0",
|
|
55
|
+
"vue": "^3.5.0",
|
|
56
|
+
"vite": "^6.0.0",
|
|
57
|
+
"vite-plugin-dts": "^4.0.0",
|
|
58
|
+
"vitest": "^3.0.0",
|
|
59
|
+
"@vitest/coverage-v8": "^3.0.0",
|
|
60
|
+
"prettier": "^3.0.0",
|
|
61
|
+
"typescript": "^5.6.0"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"build": "vite build",
|
|
65
|
+
"postbuild": "node -e \"require('fs').cpSync('../docs/usage-guide.md', 'README.md')\"",
|
|
66
|
+
"test": "vitest run --coverage",
|
|
67
|
+
"test:watch": "vitest",
|
|
68
|
+
"lint": "prettier --check src/"
|
|
69
|
+
}
|
|
70
|
+
}
|