@skenora/babylon-editor 0.1.2
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 +34 -0
- package/dist/bridge/editor-runtime-bridge.d.ts +47 -0
- package/dist/bridge/editor-runtime-bridge.d.ts.map +1 -0
- package/dist/bridge/editor-runtime-bridge.js +548 -0
- package/dist/bridge/editor-runtime-bridge.js.map +1 -0
- package/dist/bridge/projection-operation.d.ts +50 -0
- package/dist/bridge/projection-operation.d.ts.map +1 -0
- package/dist/bridge/projection-operation.js +12 -0
- package/dist/bridge/projection-operation.js.map +1 -0
- package/dist/controllers/keyboard-controller.d.ts +17 -0
- package/dist/controllers/keyboard-controller.d.ts.map +1 -0
- package/dist/controllers/keyboard-controller.js +78 -0
- package/dist/controllers/keyboard-controller.js.map +1 -0
- package/dist/flow/editor-flow-bridge.d.ts +16 -0
- package/dist/flow/editor-flow-bridge.d.ts.map +1 -0
- package/dist/flow/editor-flow-bridge.js +46 -0
- package/dist/flow/editor-flow-bridge.js.map +1 -0
- package/dist/flow/flow-host.d.ts +12 -0
- package/dist/flow/flow-host.d.ts.map +1 -0
- package/dist/flow/flow-host.js +172 -0
- package/dist/flow/flow-host.js.map +1 -0
- package/dist/flow/runtime-flow-controller.d.ts +25 -0
- package/dist/flow/runtime-flow-controller.d.ts.map +1 -0
- package/dist/flow/runtime-flow-controller.js +143 -0
- package/dist/flow/runtime-flow-controller.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -0
- package/dist/runtime-flow.d.ts +3 -0
- package/dist/runtime-flow.d.ts.map +1 -0
- package/dist/runtime-flow.js +3 -0
- package/dist/runtime-flow.js.map +1 -0
- package/package.json +42 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from "./bridge/editor-runtime-bridge.js";
|
|
2
|
+
export * from "./bridge/projection-operation.js";
|
|
3
|
+
export * from "./controllers/keyboard-controller.js";
|
|
4
|
+
export * from "./flow/editor-flow-bridge.js";
|
|
5
|
+
export * from "./flow/flow-host.js";
|
|
6
|
+
export * from "./flow/runtime-flow-controller.js";
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mCAAmC,CAAC;AAClD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,gCAAgC,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from "./bridge/editor-runtime-bridge.js";
|
|
2
|
+
export * from "./bridge/projection-operation.js";
|
|
3
|
+
export * from "./controllers/keyboard-controller.js";
|
|
4
|
+
export * from "./flow/editor-flow-bridge.js";
|
|
5
|
+
export * from "./flow/flow-host.js";
|
|
6
|
+
export * from "./flow/runtime-flow-controller.js";
|
|
7
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mCAAmC,CAAC;AAClD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,gCAAgC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtime-flow.d.ts","sourceRoot":"","sources":["../src/runtime-flow.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,gCAAgC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtime-flow.js","sourceRoot":"","sources":["../src/runtime-flow.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,gCAAgC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@skenora/babylon-editor",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Babylon.js bridges between Skenora Editor, Runtime, and Flow.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./runtime-flow": {
|
|
18
|
+
"types": "./dist/runtime-flow.d.ts",
|
|
19
|
+
"import": "./dist/runtime-flow.js",
|
|
20
|
+
"default": "./dist/runtime-flow.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@babylonjs/core": "^9.21.2",
|
|
28
|
+
"@skenora/document": "0.1.2",
|
|
29
|
+
"@skenora/contracts": "0.1.2",
|
|
30
|
+
"@skenora/events": "0.1.2",
|
|
31
|
+
"@skenora/flow": "0.1.2",
|
|
32
|
+
"@skenora/resources": "0.1.2",
|
|
33
|
+
"@skenora/editor": "0.1.2",
|
|
34
|
+
"@skenora/runtime": "0.1.2"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsc -p tsconfig.json && node ../../scripts/prepare-package-output.mjs dist",
|
|
38
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
39
|
+
},
|
|
40
|
+
"main": "./dist/index.js",
|
|
41
|
+
"types": "./dist/index.d.ts"
|
|
42
|
+
}
|