@terra.gl/core 0.0.1-alpha.6 → 0.0.1-alpha.61
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 +202 -0
- package/README.md +200 -0
- package/dist/README.md +200 -0
- package/dist/README_CN.md +201 -0
- package/dist/assets/favicon/android-chrome-192x192.png +0 -0
- package/dist/assets/favicon/android-chrome-512x512.png +0 -0
- package/dist/assets/favicon/apple-touch-icon.png +0 -0
- package/dist/assets/favicon/favicon-16x16.png +0 -0
- package/dist/assets/favicon/favicon-32x32.png +0 -0
- package/dist/assets/favicon/favicon.ico +0 -0
- package/dist/assets/terra.css +501 -0
- package/dist/index.d.ts +7708 -1274
- package/dist/index.js +20699 -7623
- package/dist/index.umd.cjs +384 -113
- package/package.json +21 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terra.gl/core",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.61",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"author": {
|
|
19
|
-
"name": "
|
|
19
|
+
"name": "Criska"
|
|
20
20
|
},
|
|
21
21
|
"description": "a map using threejs",
|
|
22
|
-
"license": "
|
|
22
|
+
"license": "Apache-2.0",
|
|
23
23
|
"keywords": [
|
|
24
24
|
"three",
|
|
25
25
|
"gis",
|
|
@@ -31,7 +31,11 @@
|
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
33
|
"dev": "vite build --watch",
|
|
34
|
-
"build": "tsc && vite build"
|
|
34
|
+
"build": "tsc && vite build && node copy-extra-to-dist.cjs",
|
|
35
|
+
"docs:build-plugin": "tsc --project docs/typedoc-plugins",
|
|
36
|
+
"docs:generate": "npx rimraf docs/jsdoc && npx tsc --noEmit false --declaration false --outDir dist-docs-temp --removeComments false && npx jsdoc -c jsdoc.json && npx rimraf dist-docs-temp",
|
|
37
|
+
"docs:typedoc": "npx typedoc --options typedoc.json",
|
|
38
|
+
"changelog": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s --commit-path ."
|
|
35
39
|
},
|
|
36
40
|
"peerDependencies": {
|
|
37
41
|
"three": "^0.171.0"
|
|
@@ -41,15 +45,24 @@
|
|
|
41
45
|
"access": "public"
|
|
42
46
|
},
|
|
43
47
|
"dependencies": {
|
|
48
|
+
"@mapbox/vector-tile": "^2.0.4",
|
|
44
49
|
"@pmndrs/vanilla": "^1.20.4",
|
|
45
|
-
"@takram/three-atmosphere": "^0.11.2",
|
|
46
|
-
"@takram/three-clouds": "^0.2.2",
|
|
47
|
-
"@takram/three-geospatial": "^0.2.1",
|
|
48
|
-
"@takram/three-geospatial-effects": "^0.3.1",
|
|
49
50
|
"@types/earcut": "^3.0.0",
|
|
50
51
|
"@types/geojson": "^7946.0.16",
|
|
52
|
+
"d3-quadtree": "^3.0.1",
|
|
51
53
|
"earcut": "^3.0.1",
|
|
54
|
+
"lodash": "^4.17.21",
|
|
55
|
+
"pbf": "^4.0.1",
|
|
52
56
|
"postprocessing": "^6.37.3",
|
|
53
57
|
"three-stdlib": "^2.36.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@types/lodash": "^4.17.20",
|
|
61
|
+
"@types/node": "^24.2.0",
|
|
62
|
+
"jsdoc": "^4.0.5",
|
|
63
|
+
"rimraf": "^6.1.2",
|
|
64
|
+
"typedoc": "^0.28.8",
|
|
65
|
+
"typedoc-vitepress-theme": "^1.1.2",
|
|
66
|
+
"vue": "^3.5.18"
|
|
54
67
|
}
|
|
55
68
|
}
|