@tomorrowevening/hermes 0.0.1 → 0.0.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/package.json +2 -2
- package/types/index.d.ts +14 -0
- /package/src/{library.ts → index.ts} +0 -0
package/package.json
CHANGED
@@ -3,11 +3,11 @@
|
|
3
3
|
"author": "Colin Duffy <http://tomorrowevening.com/>",
|
4
4
|
"description": "An extendable set of Web Tools controlled via a separate window for non-intereference with content.",
|
5
5
|
"license": "GPL-3.0-or-later",
|
6
|
-
"main": "./dist/hermes.umd.
|
6
|
+
"main": "./dist/hermes.umd.cjs",
|
7
7
|
"module": "./dist/hermes.js",
|
8
8
|
"types": "./types/index.d.ts",
|
9
9
|
"type": "module",
|
10
|
-
"version": "0.0.
|
10
|
+
"version": "0.0.2",
|
11
11
|
"homepage": "https://github.com/tomorrowevening/hermes#readme",
|
12
12
|
"bugs": {
|
13
13
|
"url": "https://github.com/tomorrowevening/hermes/issues"
|
package/types/index.d.ts
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
export { default as Application } from './core/Application';
|
2
|
+
export { debugDispatcher, ToolEvents } from './editor/global';
|
3
|
+
export { default as BaseRemote } from './core/remote/BaseRemote';
|
4
|
+
export { default as RemoteComponents } from './core/remote/RemoteComponents';
|
5
|
+
export { default as RemoteTheatre } from './core/remote/RemoteTheatre';
|
6
|
+
export { default as RemoteTweakpane } from './core/remote/RemoteTweakpane';
|
7
|
+
export { default as NavButton } from './editor/components/NavButton';
|
8
|
+
export { default as DraggableItem } from './editor/components/DraggableItem';
|
9
|
+
export { default as Draggable } from './editor/components/Draggable';
|
10
|
+
export { default as DropdownItem } from './editor/components/DropdownItem';
|
11
|
+
export { default as Dropdown } from './editor/components/Dropdown';
|
12
|
+
export { default as RemoteController } from './core/RemoteController';
|
13
|
+
export { default as SceneHierarchy } from './editor/sceneHierarchy/SceneHierarchy';
|
14
|
+
export { default as Editor } from './editor/Editor';
|
File without changes
|