@x-humanoid-cloud/bic-map 0.0.1

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/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@x-humanoid-cloud/bic-map",
3
+ "private": false,
4
+ "version": "0.0.1",
5
+ "description": "GL地图库,室内外一体化的地图渲染与交互解决方案",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/bic-map.umd.js",
9
+ "module": "./dist/bic-map.mjs",
10
+ "files": [
11
+ "dist",
12
+ "LICENSE",
13
+ "THIRD-PARTY-LICENSES.md"
14
+ ],
15
+ "publishConfig": {
16
+ "registry": "https://registry.npmjs.org/",
17
+ "access": "public"
18
+ },
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "vite build",
22
+ "build:cdn": "vite build --mode cdn",
23
+ "build:all": "pnpm run build && pnpm run build:cdn",
24
+ "build:debug": "cross-env KEEP_CONSOLE=true vite build",
25
+ "build:cdn:debug": "cross-env KEEP_CONSOLE=true vite build --mode cdn",
26
+ "build:web": "vite build --mode web",
27
+ "build:all:debug": "cross-env KEEP_CONSOLE=true pnpm run build && cross-env KEEP_CONSOLE=true pnpm run build:cdn",
28
+ "preview": "vite preview",
29
+ "sync:github": "bash sync-github.sh"
30
+ },
31
+ "dependencies": {
32
+ "@turf/turf": "7.3.5",
33
+ "maplibre-gl": "3.6.2",
34
+ "three": "0.149.0",
35
+ "vue": "^3.5.13",
36
+ "urdf-loader": "^0.12.5"
37
+ },
38
+ "devDependencies": {
39
+ "@vitejs/plugin-vue": "^5.2.2",
40
+ "cross-env": "^7.0.3",
41
+ "events": "^3.3.0",
42
+ "fabric": "^6.7.0",
43
+ "lucide-vue-next": "^0.577.0",
44
+ "sass-embedded": "^1.99.0",
45
+ "terser": "^5.42.0",
46
+ "uuid": "^14.0.0",
47
+ "vite": "^6.3.1",
48
+ "vue-router": "^5.0.3"
49
+ }
50
+ }