@babylonjs/gui-editor 5.0.0-rc.0 → 5.0.0-rc.11
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/dist/babylon.guiEditor.js +3 -0
- package/dist/babylon.guiEditor.js.LICENSE.txt +53 -0
- package/dist/babylon.guiEditor.js.map +1 -0
- package/dist/babylon.guiEditor.max.js +58933 -0
- package/dist/babylon.guiEditor.max.js.map +1 -0
- package/dist/babylon.guiEditor.module.d.ts +2534 -0
- package/package.json +28 -24
- package/readme.md +1 -1
- package/babylon.guiEditor.max.js +0 -52212
- package/babylon.guiEditor.max.js.map +0 -1
- package/babylon.guiEditor.module.d.ts +0 -2468
package/package.json
CHANGED
@@ -1,30 +1,34 @@
|
|
1
1
|
{
|
2
|
-
"author": {
|
3
|
-
"name": "David CATUHE"
|
4
|
-
},
|
5
2
|
"name": "@babylonjs/gui-editor",
|
6
|
-
"
|
7
|
-
"
|
8
|
-
"
|
9
|
-
|
10
|
-
|
11
|
-
},
|
12
|
-
"license": "Apache-2.0",
|
13
|
-
"dependencies": {
|
14
|
-
"@babylonjs/core": "5.0.0-rc.0",
|
15
|
-
"tslib": "^2.3.1"
|
16
|
-
},
|
3
|
+
"version": "5.0.0-rc.11",
|
4
|
+
"main": "dist/babylon.guiEditor.max.js",
|
5
|
+
"module": "dist/babylon.guiEditor.max.js",
|
6
|
+
"esnext": "dist/babylon.guiEditor.max.js",
|
7
|
+
"typings": "dist/babylon.guiEditor.module.d.ts",
|
17
8
|
"files": [
|
18
|
-
"
|
19
|
-
"babylon.guiEditor.max.js.map",
|
20
|
-
"babylon.guiEditor.module.d.ts",
|
9
|
+
"dist",
|
21
10
|
"readme.md"
|
22
11
|
],
|
23
|
-
"
|
24
|
-
"
|
12
|
+
"scripts": {
|
13
|
+
"build": "npm run clean && npm run build:dev && npm run build:prod && npm run build:declaration",
|
14
|
+
"build:dev": "webpack --env development",
|
15
|
+
"build:prod": "webpack --env production",
|
16
|
+
"build:declaration": "build-tools -c pud --config ./config.json",
|
17
|
+
"clean": "rimraf dist"
|
18
|
+
},
|
19
|
+
"dependencies": {
|
20
|
+
"@babylonjs/core": "^5.0.0-rc.11",
|
21
|
+
"@babylonjs/gui": "^5.0.0-rc.11"
|
22
|
+
},
|
23
|
+
"peerDependencies": {
|
24
|
+
"@types/react": ">=16.7.3",
|
25
|
+
"@types/react-dom": ">=16.0.9"
|
26
|
+
},
|
27
|
+
"devDependencies": {
|
28
|
+
"react": "^17.0.2",
|
29
|
+
"react-dom": "^17.0.2",
|
30
|
+
"rimraf": "^3.0.2",
|
31
|
+
"typescript": "^4.4.4"
|
25
32
|
},
|
26
|
-
"
|
27
|
-
|
28
|
-
"esnext": "babylon.guiEditor.max.js",
|
29
|
-
"typings": "babylon.guiEditor.module.d.ts"
|
30
|
-
}
|
33
|
+
"sideEffects": true
|
34
|
+
}
|
package/readme.md
CHANGED
@@ -5,7 +5,7 @@ Gui Editor es6
|
|
5
5
|
An extension to easily allow users to create and modify GUI for scenes.
|
6
6
|
|
7
7
|
## Usage
|
8
|
-
Currently
|
8
|
+
Currently available for local development by selecting "Launch GUI Editor (Chrome)"
|
9
9
|
|
10
10
|
## Current Supported Features
|
11
11
|
|