@babylonjs/gui-editor 5.0.0-rc.4 → 5.0.0-rc.7

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 CHANGED
@@ -1,30 +1,35 @@
1
1
  {
2
- "author": {
3
- "name": "David CATUHE"
4
- },
5
2
  "name": "@babylonjs/gui-editor",
6
- "description": "The Babylon.js GUI editor.",
7
- "version": "5.0.0-rc.4",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/BabylonJS/Babylon.js.git"
3
+ "version": "5.0.0-rc.7",
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",
8
+ "files": [
9
+ "dist",
10
+ "readme.md"
11
+ ],
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"
11
18
  },
12
- "license": "Apache-2.0",
13
19
  "dependencies": {
14
- "@babylonjs/core": "5.0.0-rc.4",
20
+ "@babylonjs/core": "^5.0.0-rc.7",
21
+ "@babylonjs/gui": "^5.0.0-rc.7",
22
+ "react": "^17.0.2",
23
+ "react-dom": "^17.0.2",
15
24
  "tslib": "^2.3.1"
16
25
  },
17
- "files": [
18
- "babylon.guiEditor.max.js",
19
- "babylon.guiEditor.max.js.map",
20
- "babylon.guiEditor.module.d.ts",
21
- "readme.md"
22
- ],
23
- "engines": {
24
- "node": "*"
26
+ "peerDependencies": {
27
+ "@types/react": ">=16.7.3",
28
+ "@types/react-dom": ">=16.0.9"
29
+ },
30
+ "devDependencies": {
31
+ "rimraf": "^3.0.2",
32
+ "typescript": "^4.4.4"
25
33
  },
26
- "main": "babylon.guiEditor.max.js",
27
- "module": "babylon.guiEditor.max.js",
28
- "esnext": "babylon.guiEditor.max.js",
29
- "typings": "babylon.guiEditor.module.d.ts"
30
- }
34
+ "sideEffects": true
35
+ }
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 avalible for local development by selecting "Launch GUI Editor (Chrome)"
8
+ Currently available for local development by selecting "Launch GUI Editor (Chrome)"
9
9
 
10
10
  ## Current Supported Features
11
11