earthsdk3 0.0.1-beta.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/README.md +2 -0
- package/dist/index.html +1 -0
- package/dist/types/ESJTypes/index.d.ts +2 -0
- package/dist/types/ESJTypes/properties/index.d.ts +123 -0
- package/dist/types/ESJTypes/props/ColorProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/ColorRgbProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/DashPatternProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/EnumProperty.d.ts +9 -0
- package/dist/types/ESJTypes/props/EnumStringsProperty.d.ts +9 -0
- package/dist/types/ESJTypes/props/EvalStringProperty.d.ts +9 -0
- package/dist/types/ESJTypes/props/FunctionProperty.d.ts +13 -0
- package/dist/types/ESJTypes/props/GroupProperty.d.ts +7 -0
- package/dist/types/ESJTypes/props/JsonProperty.d.ts +9 -0
- package/dist/types/ESJTypes/props/LongStringProperty.d.ts +9 -0
- package/dist/types/ESJTypes/props/MinmaxProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/NativeProperty.d.ts +85 -0
- package/dist/types/ESJTypes/props/NearFarScalerProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/NonreactiveJsonStringProperty.d.ts +12 -0
- package/dist/types/ESJTypes/props/NumberRangeProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/NumberSliderProperty.d.ts +22 -0
- package/dist/types/ESJTypes/props/ParamsProperty.d.ts +11 -0
- package/dist/types/ESJTypes/props/PlayerProperty.d.ts +26 -0
- package/dist/types/ESJTypes/props/PositionProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/PositionsProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/PositionsSetPropety.d.ts +4 -0
- package/dist/types/ESJTypes/props/Property.d.ts +12 -0
- package/dist/types/ESJTypes/props/ReactVarProperty.d.ts +7 -0
- package/dist/types/ESJTypes/props/RotationProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/UriProperty.d.ts +4 -0
- package/dist/types/ESJTypes/props/ViewPlayerProperty.d.ts +22 -0
- package/dist/types/ESJTypes/props/WithUndefinedProperty.d.ts +15 -0
- package/dist/types/ESJTypes/props/index.d.ts +27 -0
- package/dist/types/ESObjectManager/SceneObjectsManager.d.ts +17 -0
- package/dist/types/ESObjectManager/ViewersManager.d.ts +17 -0
- package/dist/types/ESObjectManager/index.d.ts +26 -0
- package/dist/types/ESObjects/base/ESSceneObject/ESObjectsContext.d.ts +35 -0
- package/dist/types/ESObjects/base/ESSceneObject/index.d.ts +34 -0
- package/dist/types/ESObjects/base/index.d.ts +1 -0
- package/dist/types/ESObjects/index.d.ts +1 -0
- package/dist/types/ESViewer/ContainerStyleController.d.ts +8 -0
- package/dist/types/ESViewer/ViewerContainer.d.ts +15 -0
- package/dist/types/ESViewer/ViewerContext.d.ts +11 -0
- package/dist/types/ESViewer/index.d.ts +60 -0
- package/dist/types/EngineObject/EngineObjectsContext.d.ts +10 -0
- package/dist/types/EngineObject/index.d.ts +11 -0
- package/dist/types/copyright.d.ts +11 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/xbsj-base.js +2 -0
- package/dist/xbsj-base.js.LICENSE.txt +1 -0
- package/dist/xbsj-base.js.gz +0 -0
- package/package.json +44 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! earthsdk3(0.0.1-beta.0.1-c7745f97-2024-08-16T02:07:44.000Z) 版权所有@北京西部世界科技有限公司 */
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "earthsdk3",
|
|
3
|
+
"version": "0.0.1-beta.0.1",
|
|
4
|
+
"description": "地球可视化实验室 (EarthSDK&CesiumLab) https://www.bjxbsj.cn",
|
|
5
|
+
"main": "./dist/earthsdk3.js",
|
|
6
|
+
"types": "./dist/types/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"package.json",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "webpack-dev-server --mode=development --config ./tools/webpack-scripts/webpack.config.js",
|
|
14
|
+
"build": "webpack --mode=production --config ./tools/webpack-scripts/webpack.config.js && ts-node ./tools/webpack-scripts/dtsReplace.ts -i ./dist/types",
|
|
15
|
+
"login": "npm login --registry https://registry.npmjs.org",
|
|
16
|
+
"push-beta": "npm publish --registry https://registry.npmjs.org --tag beta",
|
|
17
|
+
"push": "npm publish --registry https://registry.npmjs.org"
|
|
18
|
+
},
|
|
19
|
+
"author": "suplyang",
|
|
20
|
+
"owner": "北京西部世界科技有限公司",
|
|
21
|
+
"homepage": "www.earthsdk.com",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@babel/runtime": "^7.12.0",
|
|
25
|
+
"@types/yargs": "^15.0.5",
|
|
26
|
+
"yargs": "^15.4.1",
|
|
27
|
+
"webpack": "^5.37.0",
|
|
28
|
+
"webpack-cli": "4.10.0",
|
|
29
|
+
"webpack-core": "^0.6.9",
|
|
30
|
+
"webpack-dev-server": "^4.6.0",
|
|
31
|
+
"webpack-merge": "^4.2.2",
|
|
32
|
+
"webpack-obfuscator": "^3.5.0",
|
|
33
|
+
"clean-webpack-plugin": "^3.0.0",
|
|
34
|
+
"html-webpack-plugin": "^5.6.0",
|
|
35
|
+
"compression-webpack-plugin": "^11.1.0",
|
|
36
|
+
"replace-bundle-webpack-plugin-webpack-5": "^1.0.0",
|
|
37
|
+
"ts-loader": "^9.5.1",
|
|
38
|
+
"typescript": "^4.6.2",
|
|
39
|
+
"ts-node": "^8.10.2"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"xbsj-base": "0.0.1-beta.0.8"
|
|
43
|
+
}
|
|
44
|
+
}
|