@certe/atmos-editor 0.2.0 → 0.3.0
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 +16 -29
- package/src/index.ts +0 -48
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@certe/atmos-editor",
|
|
3
3
|
"description": "Browser-based Unity-style editor for the Atmos Engine — hierarchy, inspector, gizmos",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/certesolutions-cyber/atmos.git",
|
|
@@ -19,36 +19,23 @@
|
|
|
19
19
|
"atmos"
|
|
20
20
|
],
|
|
21
21
|
"type": "module",
|
|
22
|
-
"main": "
|
|
23
|
-
"types": "
|
|
22
|
+
"main": "dist/index.js",
|
|
23
|
+
"types": "dist/index.d.ts",
|
|
24
24
|
"exports": {
|
|
25
|
-
".":
|
|
26
|
-
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./player": {
|
|
30
|
+
"types": "./dist/player-entry.d.ts",
|
|
31
|
+
"import": "./dist/player-entry.js"
|
|
32
|
+
},
|
|
27
33
|
"./vite": {
|
|
28
34
|
"types": "./vite-plugin.d.ts",
|
|
29
35
|
"import": "./vite-plugin.mjs",
|
|
30
36
|
"require": "./vite-plugin.cjs"
|
|
31
37
|
}
|
|
32
38
|
},
|
|
33
|
-
"publishConfig": {
|
|
34
|
-
"main": "dist/index.js",
|
|
35
|
-
"types": "dist/index.d.ts",
|
|
36
|
-
"exports": {
|
|
37
|
-
".": {
|
|
38
|
-
"types": "./dist/index.d.ts",
|
|
39
|
-
"import": "./dist/index.js"
|
|
40
|
-
},
|
|
41
|
-
"./player": {
|
|
42
|
-
"types": "./dist/player-entry.d.ts",
|
|
43
|
-
"import": "./dist/player-entry.js"
|
|
44
|
-
},
|
|
45
|
-
"./vite": {
|
|
46
|
-
"types": "./vite-plugin.d.ts",
|
|
47
|
-
"import": "./vite-plugin.mjs",
|
|
48
|
-
"require": "./vite-plugin.cjs"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
39
|
"files": [
|
|
53
40
|
"dist",
|
|
54
41
|
"!dist/__tests__",
|
|
@@ -68,11 +55,11 @@
|
|
|
68
55
|
}
|
|
69
56
|
},
|
|
70
57
|
"dependencies": {
|
|
71
|
-
"@certe/atmos-animation": "^0.
|
|
72
|
-
"@certe/atmos-assets": "^0.
|
|
73
|
-
"@certe/atmos-core": "^0.
|
|
74
|
-
"@certe/atmos-math": "^0.
|
|
75
|
-
"@certe/atmos-renderer": "^0.
|
|
58
|
+
"@certe/atmos-animation": "^0.3.0",
|
|
59
|
+
"@certe/atmos-assets": "^0.3.0",
|
|
60
|
+
"@certe/atmos-core": "^0.3.0",
|
|
61
|
+
"@certe/atmos-math": "^0.3.0",
|
|
62
|
+
"@certe/atmos-renderer": "^0.3.0",
|
|
76
63
|
"react": "^19.0.0",
|
|
77
64
|
"react-dom": "^19.0.0"
|
|
78
65
|
},
|
package/src/index.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
export { EditorState } from './editor-state.js';
|
|
2
|
-
export type { EditorEvent } from './editor-state.js';
|
|
3
|
-
export { mountEditor } from './editor-mount.js';
|
|
4
|
-
export type { MountEditorOptions, MountEditorResult, PrimitiveType } from './editor-mount.js';
|
|
5
|
-
export { getProperty, setProperty } from './property-setters.js';
|
|
6
|
-
export { OrbitCamera } from './orbit-camera.js';
|
|
7
|
-
export { ObjectPicker } from './object-picker.js';
|
|
8
|
-
export type { PickResult } from './object-picker.js';
|
|
9
|
-
export { computeSelectionCenter } from './selection-utils.js';
|
|
10
|
-
export { GizmoState } from './gizmo-state.js';
|
|
11
|
-
export type { GizmoMode, GizmoAxis } from './gizmo-state.js';
|
|
12
|
-
export { GizmoRenderer } from './gizmo-renderer.js';
|
|
13
|
-
export { OverlayRenderer } from './overlay-renderer.js';
|
|
14
|
-
export { CAMERA_PRESETS, applyCameraPreset } from './camera-presets.js';
|
|
15
|
-
export type { CameraPreset } from './camera-presets.js';
|
|
16
|
-
export {
|
|
17
|
-
findObjectById,
|
|
18
|
-
duplicateGameObject,
|
|
19
|
-
deleteGameObject,
|
|
20
|
-
canReparent,
|
|
21
|
-
reparentGameObject,
|
|
22
|
-
setReparentValidator,
|
|
23
|
-
setOnReparent,
|
|
24
|
-
setOnDuplicate,
|
|
25
|
-
} from './scene-operations.js';
|
|
26
|
-
export type { ReparentValidator, ReparentCallback, DuplicateCallback } from './scene-operations.js';
|
|
27
|
-
export { takeSnapshot, restoreSnapshot } from './scene-snapshot.js';
|
|
28
|
-
export type { SceneSnapshot } from './scene-snapshot.js';
|
|
29
|
-
export { AssetBrowserClient } from './asset-browser-client.js';
|
|
30
|
-
export type { AssetEntry, AssetListResponse, AssetChangeEvent, ScriptAsset } from './asset-types.js';
|
|
31
|
-
export { discoverScripts, autoDiscoverScripts } from './script-discovery.js';
|
|
32
|
-
export { ProjectFileSystem } from './project-fs.js';
|
|
33
|
-
export { MaterialManager } from './material-manager.js';
|
|
34
|
-
export { ProjectSettingsManager } from './project-settings.js';
|
|
35
|
-
export type { PhysicsSettings, ProjectSettings } from './project-settings.js';
|
|
36
|
-
export { startEditor } from './bootstrap/start-editor.js';
|
|
37
|
-
export { startPlayer } from './bootstrap/start-player.js';
|
|
38
|
-
export type { PlayerConfig, PlayerApp } from './bootstrap/start-player.js';
|
|
39
|
-
export { createEditorPhysics } from './bootstrap/editor-physics.js';
|
|
40
|
-
export { SimpleMaterialLoader } from './simple-material-loader.js';
|
|
41
|
-
export type {
|
|
42
|
-
EditorConfig,
|
|
43
|
-
EditorApp,
|
|
44
|
-
EditorPhysicsPlugin,
|
|
45
|
-
SceneSetupContext,
|
|
46
|
-
MeshLike,
|
|
47
|
-
PhysicsInitContext,
|
|
48
|
-
} from './bootstrap/types.js';
|