@volter/editor-core 0.5.57

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.
Files changed (719) hide show
  1. package/BUNDLED_NOTICES +1527 -0
  2. package/LICENSE +686 -0
  3. package/LICENSE-APACHE +202 -0
  4. package/NOTICE +18 -0
  5. package/README.md +24 -0
  6. package/dist/build/chunk-JS4D4XZ3.js +175 -0
  7. package/dist/build/chunk-JS4D4XZ3.js.map +7 -0
  8. package/dist/build/vite-plugin-product-contributions.js +100 -0
  9. package/dist/build/vite-plugin-product-contributions.js.map +7 -0
  10. package/dist/build/vite-plugin-shared-react.js +25 -0
  11. package/dist/build/vite-plugin-shared-react.js.map +7 -0
  12. package/dist/build/vite-plugin-shared-three.js +86 -0
  13. package/dist/build/vite-plugin-shared-three.js.map +7 -0
  14. package/dist/server/chunk-KMJC7AGO.js +98 -0
  15. package/dist/server/chunk-KMJC7AGO.js.map +7 -0
  16. package/dist/server/chunk-PSILUMGS.js +46 -0
  17. package/dist/server/chunk-PSILUMGS.js.map +7 -0
  18. package/dist/server/frame-proxy.js +255 -0
  19. package/dist/server/frame-proxy.js.map +7 -0
  20. package/dist/server/open-browser.js +53 -0
  21. package/dist/server/open-browser.js.map +7 -0
  22. package/dist/server/process-shutdown.js +127 -0
  23. package/dist/server/process-shutdown.js.map +7 -0
  24. package/dist/server/session-registry.js +141 -0
  25. package/dist/server/session-registry.js.map +7 -0
  26. package/dist/server/spawn-opener.js +11 -0
  27. package/dist/server/spawn-opener.js.map +7 -0
  28. package/dist/server/worktree-identity.js +11 -0
  29. package/dist/server/worktree-identity.js.map +7 -0
  30. package/dist-server/packaged.mjs +88816 -0
  31. package/package.json +118 -0
  32. package/scripts/build-plugins.mjs +14 -0
  33. package/scripts/build-server.mjs +26 -0
  34. package/scripts/build-session.mjs +9 -0
  35. package/server/account-credentials.ts +60 -0
  36. package/server/account-service.ts +1434 -0
  37. package/server/adapter-region-includes.ts +47 -0
  38. package/server/asset-catalog-v2.ts +175 -0
  39. package/server/asset-history-snapshots.ts +196 -0
  40. package/server/asset-ledger-store.ts +195 -0
  41. package/server/asset-library-routes.ts +1595 -0
  42. package/server/blender-wasm-artifact.ts +430 -0
  43. package/server/boot-timings.ts +106 -0
  44. package/server/canonical-path.ts +50 -0
  45. package/server/checkout-workspace-preflight.ts +349 -0
  46. package/server/cloud-asset-catalog.ts +158 -0
  47. package/server/coding-inference-launch.ts +237 -0
  48. package/server/collaboration-account-client.ts +202 -0
  49. package/server/collaboration-attribution.ts +122 -0
  50. package/server/collaboration-session.ts +934 -0
  51. package/server/comfyui-bridge.ts +248 -0
  52. package/server/console-ledger.ts +499 -0
  53. package/server/creation-site-transform.ts +304 -0
  54. package/server/creation-site-write.ts +648 -0
  55. package/server/data-file-serialize.ts +158 -0
  56. package/server/editor-brand-html.ts +72 -0
  57. package/server/editor-control-socket.ts +366 -0
  58. package/server/editor-server-options.ts +190 -0
  59. package/server/editor-server.ts +1483 -0
  60. package/server/editor-sse.ts +352 -0
  61. package/server/engine-provenance.ts +169 -0
  62. package/server/engine-source-restart.ts +117 -0
  63. package/server/frame-bridge.ts +115 -0
  64. package/server/frame-proxy.ts +490 -0
  65. package/server/frame-workbench.ts +259 -0
  66. package/server/frontend-handoff.ts +229 -0
  67. package/server/game-globals-shadow.ts +113 -0
  68. package/server/gameplay-session-retention.ts +149 -0
  69. package/server/gameplay-sessions.ts +123 -0
  70. package/server/generation-jobs.ts +201 -0
  71. package/server/generation-reconciler.ts +137 -0
  72. package/server/generative-execution-context.ts +59 -0
  73. package/server/git-workflow.ts +612 -0
  74. package/server/harness-chat-caller.ts +36 -0
  75. package/server/harness-chat-service.ts +1681 -0
  76. package/server/idle-shutdown.ts +170 -0
  77. package/server/js-profiling-policy.ts +52 -0
  78. package/server/launcher-settings.ts +84 -0
  79. package/server/local-asset-catalog.ts +410 -0
  80. package/server/managed-account-defaults.ts +22 -0
  81. package/server/mock-control-plane.ts +540 -0
  82. package/server/model-import-conversion.ts +345 -0
  83. package/server/native-credential-store.ts +162 -0
  84. package/server/open-browser.ts +118 -0
  85. package/server/packaged.ts +1192 -0
  86. package/server/play-stall.ts +126 -0
  87. package/server/process-shutdown.ts +218 -0
  88. package/server/product-presets.ts +55 -0
  89. package/server/project-build-artifact.ts +95 -0
  90. package/server/project-components.ts +100 -0
  91. package/server/project-dependency-invalidation.ts +114 -0
  92. package/server/project-file-scan.ts +235 -0
  93. package/server/project-hmr-files.ts +215 -0
  94. package/server/project-install-roots.ts +210 -0
  95. package/server/project-kinds.ts +71 -0
  96. package/server/project-mcp-servers.ts +82 -0
  97. package/server/project-module-freshness.ts +109 -0
  98. package/server/project-module-instance.ts +375 -0
  99. package/server/project-optimize-deps-entries.ts +827 -0
  100. package/server/project-output-writer.ts +679 -0
  101. package/server/project-package-origin.ts +63 -0
  102. package/server/project-root-surface.ts +831 -0
  103. package/server/project-scratch-path.ts +47 -0
  104. package/server/project-script-hmr.ts +619 -0
  105. package/server/project-serving-plugins.ts +236 -0
  106. package/server/project-tools.ts +653 -0
  107. package/server/project-validation.ts +250 -0
  108. package/server/project-verbs.ts +127 -0
  109. package/server/project-view.ts +52 -0
  110. package/server/project-watch.ts +1134 -0
  111. package/server/project-work-coordinator.ts +288 -0
  112. package/server/provider-credentials.ts +331 -0
  113. package/server/recent-projects-store.ts +98 -0
  114. package/server/redact-secrets.ts +71 -0
  115. package/server/repository-presence.ts +267 -0
  116. package/server/routes/account.ts +357 -0
  117. package/server/routes/agents.ts +60 -0
  118. package/server/routes/assets.ts +154 -0
  119. package/server/routes/build.ts +13 -0
  120. package/server/routes/collaboration.ts +595 -0
  121. package/server/routes/configurations.ts +419 -0
  122. package/server/routes/context.ts +264 -0
  123. package/server/routes/control-plane.ts +1811 -0
  124. package/server/routes/logs.ts +272 -0
  125. package/server/routes/project-identity.ts +302 -0
  126. package/server/routes/project-open.ts +429 -0
  127. package/server/routes/project-source.ts +686 -0
  128. package/server/routes/project-state.ts +383 -0
  129. package/server/routes/relay.ts +1029 -0
  130. package/server/routes/route-helpers.ts +29 -0
  131. package/server/routes/served-modules.ts +138 -0
  132. package/server/routes/session-tabs.ts +196 -0
  133. package/server/routes/settings.ts +121 -0
  134. package/server/routes/share-control.ts +486 -0
  135. package/server/routes/themes.ts +116 -0
  136. package/server/routes/tools.ts +230 -0
  137. package/server/routes/worktrees.ts +595 -0
  138. package/server/scoped-game-css.ts +461 -0
  139. package/server/server-utils.ts +1194 -0
  140. package/server/session-product.ts +112 -0
  141. package/server/session-registry.ts +230 -0
  142. package/server/share-claims.ts +138 -0
  143. package/server/share-host.ts +526 -0
  144. package/server/share-session-gateway.ts +1362 -0
  145. package/server/share-tunnel.ts +123 -0
  146. package/server/spawn-opener.ts +74 -0
  147. package/server/support/play/log-format.ts +76 -0
  148. package/server/support/play/session-record.ts +199 -0
  149. package/server/support/project/build-discipline.ts +718 -0
  150. package/server/support/project/inspection-node.ts +119 -0
  151. package/server/support/project/log-naming.ts +54 -0
  152. package/server/support/project/provenance.ts +290 -0
  153. package/server/support/project/run-name.ts +18 -0
  154. package/server/support/project/session-journal.ts +830 -0
  155. package/server/support/project/shared.ts +327 -0
  156. package/server/tab-bootstrap.ts +62 -0
  157. package/server/tab-heartbeat.ts +477 -0
  158. package/server/tab-lifecycle.ts +550 -0
  159. package/server/tab-presence.ts +1508 -0
  160. package/server/team-agent-mirror.ts +95 -0
  161. package/server/twin-auth.ts +138 -0
  162. package/server/vendored-lock-recorder.ts +968 -0
  163. package/server/worktree-identity.ts +121 -0
  164. package/server/worktree-management.ts +398 -0
  165. package/server/worktree-retention.d.mts +13 -0
  166. package/server/worktree-retention.mjs +205 -0
  167. package/src/EditorContext.tsx +169 -0
  168. package/src/account.ts +333 -0
  169. package/src/action-registry.ts +532 -0
  170. package/src/active-product.ts +74 -0
  171. package/src/active-project.ts +155 -0
  172. package/src/adapter-editor-config.ts +25 -0
  173. package/src/adapter-observation.ts +49 -0
  174. package/src/animation/stage-transport.ts +379 -0
  175. package/src/animation/three-clips-subject.ts +172 -0
  176. package/src/api/asset-library-wire.ts +45 -0
  177. package/src/api/assets.ts +365 -0
  178. package/src/api/base.ts +10 -0
  179. package/src/api/build.ts +99 -0
  180. package/src/api/git-wire.ts +56 -0
  181. package/src/api/logs.ts +92 -0
  182. package/src/api/project-identity.ts +74 -0
  183. package/src/api/project-open.ts +355 -0
  184. package/src/api/project-source.ts +162 -0
  185. package/src/api/project-state.ts +107 -0
  186. package/src/api/relay.ts +268 -0
  187. package/src/api/settings.ts +36 -0
  188. package/src/api/themes.ts +45 -0
  189. package/src/api/worktrees.ts +257 -0
  190. package/src/asset-compare-core.ts +171 -0
  191. package/src/asset-compare.ts +294 -0
  192. package/src/asset-editor-context.tsx +100 -0
  193. package/src/asset-events.ts +97 -0
  194. package/src/asset-inspector-actions.ts +87 -0
  195. package/src/asset-preview-framing.ts +357 -0
  196. package/src/asset-preview.ts +2802 -0
  197. package/src/asset-selection-viewer-registry.ts +113 -0
  198. package/src/asset-selection.ts +133 -0
  199. package/src/asset-workflow/asset-capabilities.ts +344 -0
  200. package/src/asset-workflow/asset-import-jobs.ts +106 -0
  201. package/src/asset-workflow/asset-ledger-backend.ts +126 -0
  202. package/src/asset-workflow/asset-ledger.ts +156 -0
  203. package/src/asset-workflow/asset-materialization-report.ts +140 -0
  204. package/src/asset-workflow/asset-pack-manifest.ts +320 -0
  205. package/src/asset-workflow/asset-types.ts +142 -0
  206. package/src/asset-workflow/asset-workflow-quality.ts +61 -0
  207. package/src/asset-workflow/audio-preview-player.ts +193 -0
  208. package/src/asset-workflow/audio-waveform.ts +22 -0
  209. package/src/asset-workflow/cloud-asset-client.ts +263 -0
  210. package/src/asset-workflow/folder-preview.ts +345 -0
  211. package/src/asset-workflow/hosted-asset-materialization.ts +236 -0
  212. package/src/asset-workflow/image-view-scale.ts +32 -0
  213. package/src/asset-workflow/import-contract.ts +124 -0
  214. package/src/asset-workflow/ledger-write-lock.ts +244 -0
  215. package/src/asset-workflow/model-inspection.ts +818 -0
  216. package/src/asset-workflow/pixi-spritesheet.ts +197 -0
  217. package/src/asset-workflow/preview-resource-lifetime.ts +44 -0
  218. package/src/asset-workflow/project-asset-commands.ts +23 -0
  219. package/src/asset-workflow/project-asset-health.ts +139 -0
  220. package/src/asset-workflow/project-asset-operations.ts +154 -0
  221. package/src/asset-workflow/project-asset-roots.ts +68 -0
  222. package/src/asset-workflow/project-content.ts +288 -0
  223. package/src/asset-workflow/project-source-index.ts +550 -0
  224. package/src/asset-workflow/thumbnail-system.ts +256 -0
  225. package/src/authoring/active-adapter.ts +199 -0
  226. package/src/authoring/active-systems.ts +422 -0
  227. package/src/authoring/adapter-key.ts +18 -0
  228. package/src/authoring/authoring-asset-url.ts +27 -0
  229. package/src/authoring/bootstrap-state.ts +49 -0
  230. package/src/authoring/boundary-authoring-adapter.ts +184 -0
  231. package/src/authoring/breakpoint-state.ts +43 -0
  232. package/src/authoring/canvas-scene-guides.ts +76 -0
  233. package/src/authoring/component-instance-root.ts +171 -0
  234. package/src/authoring/composite-authoring-adapter.ts +2110 -0
  235. package/src/authoring/consumer-actions.ts +520 -0
  236. package/src/authoring/css-numeric-style.ts +97 -0
  237. package/src/authoring/design-time-layers.ts +849 -0
  238. package/src/authoring/design-time-mount-registry.ts +235 -0
  239. package/src/authoring/design-time-settle.ts +343 -0
  240. package/src/authoring/edit-mode-authoring.ts +619 -0
  241. package/src/authoring/eyedropper-session.ts +60 -0
  242. package/src/authoring/instance-source-menu-register.ts +13 -0
  243. package/src/authoring/instance-source-menu.ts +135 -0
  244. package/src/authoring/layered-pick.ts +183 -0
  245. package/src/authoring/live-gesture-lock.ts +50 -0
  246. package/src/authoring/live-object-transform.ts +62 -0
  247. package/src/authoring/mount-failure-report.ts +154 -0
  248. package/src/authoring/mounted-root-subjects.ts +144 -0
  249. package/src/authoring/no-authoring-adapter.ts +55 -0
  250. package/src/authoring/null-inspection-subjects.tsx +75 -0
  251. package/src/authoring/object3d-document-persistence.ts +106 -0
  252. package/src/authoring/object3d-document-session-registry.ts +120 -0
  253. package/src/authoring/object3d-document-session.ts +1326 -0
  254. package/src/authoring/object3d-gesture-controller.ts +113 -0
  255. package/src/authoring/panel-authoring.ts +121 -0
  256. package/src/authoring/prefab-instance-inspector-section.tsx +237 -0
  257. package/src/authoring/prefab-instance-section-model.ts +55 -0
  258. package/src/authoring/project-authoring-session.ts +105 -0
  259. package/src/authoring/provenance.ts +99 -0
  260. package/src/authoring/quarks-particle-systems.ts +19 -0
  261. package/src/authoring/react-canvas-navigation.ts +255 -0
  262. package/src/authoring/react-design-canvas-style.ts +20 -0
  263. package/src/authoring/react-story-board.ts +937 -0
  264. package/src/authoring/selection-scope.ts +195 -0
  265. package/src/authoring/shell-document-ops.ts +169 -0
  266. package/src/authoring/shell-object3d-document-write-policy.ts +108 -0
  267. package/src/authoring/shell-viewport-policy.ts +48 -0
  268. package/src/authoring/source-object3d-authoring-adapter.ts +526 -0
  269. package/src/authoring/stories-scope.ts +35 -0
  270. package/src/authoring/story-board-chrome-fit.ts +107 -0
  271. package/src/authoring/story-board-presentation.ts +111 -0
  272. package/src/authoring/three-projection-core.ts +226 -0
  273. package/src/authoring/viewport-pick-context.ts +40 -0
  274. package/src/authoring/viewport-raycast.ts +240 -0
  275. package/src/authoring/viewport-tool-context.ts +73 -0
  276. package/src/authoring/world-canvas-viewport-state.ts +35 -0
  277. package/src/authoring/world-hidden-viewport.ts +152 -0
  278. package/src/authoring/world-pan-state.ts +198 -0
  279. package/src/authoring/world-session-state.ts +101 -0
  280. package/src/authoring/write-pipe.ts +173 -0
  281. package/src/availability-tick.ts +66 -0
  282. package/src/bitmap-label.ts +120 -0
  283. package/src/blender-tab-metrics.ts +161 -0
  284. package/src/board-open-actions.ts +20 -0
  285. package/src/boot-routing.ts +391 -0
  286. package/src/build-identity.ts +15 -0
  287. package/src/bytes-codec.ts +62 -0
  288. package/src/camera-authoring.ts +175 -0
  289. package/src/cancellation-reason.ts +58 -0
  290. package/src/canvas-preview-frames.ts +482 -0
  291. package/src/capture-camera-pose.ts +77 -0
  292. package/src/chrome-registry.ts +159 -0
  293. package/src/chrome-slot-registry.ts +91 -0
  294. package/src/collaboration-client.ts +264 -0
  295. package/src/collaboration-presence.ts +41 -0
  296. package/src/command-dispatch.ts +19 -0
  297. package/src/command-listener.ts +2743 -0
  298. package/src/command-registry.ts +70 -0
  299. package/src/component-board-registry.ts +205 -0
  300. package/src/component-states-registry.ts +200 -0
  301. package/src/components/AgentPresentationNotice.tsx +75 -0
  302. package/src/components/AlignToolbar.tsx +204 -0
  303. package/src/components/AppRoot.tsx +394 -0
  304. package/src/components/ApplicationMenus.tsx +415 -0
  305. package/src/components/AssetBrowser.tsx +2843 -0
  306. package/src/components/AssetEditorShell.tsx +216 -0
  307. package/src/components/AssetInspectorToolSection.tsx +124 -0
  308. package/src/components/BoardRulers.tsx +354 -0
  309. package/src/components/CameraInfo.tsx +81 -0
  310. package/src/components/CanvasSceneViewport.tsx +556 -0
  311. package/src/components/CapabilityCoverageSection.tsx +185 -0
  312. package/src/components/CenterDocuments.tsx +22 -0
  313. package/src/components/ChromeSlot.tsx +20 -0
  314. package/src/components/CodeView.tsx +470 -0
  315. package/src/components/CollaborationHeaderControl.css +74 -0
  316. package/src/components/CompactInspectorCard.tsx +190 -0
  317. package/src/components/CompactInspectorShell.tsx +39 -0
  318. package/src/components/ConsolePanel.css +55 -0
  319. package/src/components/ConsolePanel.tsx +270 -0
  320. package/src/components/DefaultEditorLayout.tsx +106 -0
  321. package/src/components/DocumentHeaderStrip.tsx +96 -0
  322. package/src/components/DocumentShelfRail.tsx +45 -0
  323. package/src/components/DocumentThumbnail.tsx +345 -0
  324. package/src/components/EditorLeaseGuard.tsx +372 -0
  325. package/src/components/ErrorBanner.tsx +123 -0
  326. package/src/components/FolderPreviewTile.tsx +159 -0
  327. package/src/components/GameHierarchy.tsx +3842 -0
  328. package/src/components/GameplaySessionTimeline.tsx +295 -0
  329. package/src/components/InspectionProjection.tsx +968 -0
  330. package/src/components/Inspector.tsx +233 -0
  331. package/src/components/InspectorCanvasPreview.tsx +35 -0
  332. package/src/components/InspectorFieldsSection.tsx +290 -0
  333. package/src/components/InspectorObjectPreview.tsx +57 -0
  334. package/src/components/InspectorStoriesSection.tsx +92 -0
  335. package/src/components/InspectorToolSection.tsx +96 -0
  336. package/src/components/InspectorTransformSection.tsx +245 -0
  337. package/src/components/LightExplorerPanel.tsx +433 -0
  338. package/src/components/MediaProperties.tsx +145 -0
  339. package/src/components/NonThreeAuthoringBootstrap.tsx +19 -0
  340. package/src/components/Object3DDocumentToolbar.css +100 -0
  341. package/src/components/Object3DDocumentToolbar.tsx +454 -0
  342. package/src/components/Object3DDocumentViewport.tsx +58 -0
  343. package/src/components/ProjectHeader.css +617 -0
  344. package/src/components/ProjectHeader.tsx +328 -0
  345. package/src/components/ProjectLayout.tsx +249 -0
  346. package/src/components/ReactCanvasControls.tsx +284 -0
  347. package/src/components/RootSelectionOverlay.tsx +3162 -0
  348. package/src/components/RootTextEditor.tsx +79 -0
  349. package/src/components/SaveStatus.tsx +70 -0
  350. package/src/components/StageHost.tsx +1954 -0
  351. package/src/components/StageOverlays.tsx +21 -0
  352. package/src/components/StartupErrorScreen.tsx +76 -0
  353. package/src/components/StartupLoadingScreen.tsx +65 -0
  354. package/src/components/StatsOverlay.tsx +78 -0
  355. package/src/components/SurfaceStateOverlay.tsx +24 -0
  356. package/src/components/ToolContributionSurfaces.tsx +65 -0
  357. package/src/components/ToolHost.tsx +370 -0
  358. package/src/components/ToolObject3DPreview.tsx +39 -0
  359. package/src/components/Toolbar.tsx +595 -0
  360. package/src/components/TransientHint.tsx +44 -0
  361. package/src/components/TransportStrip.tsx +174 -0
  362. package/src/components/VersionControlSection.tsx +470 -0
  363. package/src/components/VgaiLogo.css +83 -0
  364. package/src/components/VgaiLogo.tsx +35 -0
  365. package/src/components/ViewportControlsHint.tsx +60 -0
  366. package/src/components/ViewportFurniture.tsx +401 -0
  367. package/src/components/ViewportOverlay.tsx +145 -0
  368. package/src/components/ViewportOverlaysMenu.tsx +153 -0
  369. package/src/components/ViewportShadingMenu.tsx +300 -0
  370. package/src/components/ViewportViewMenu.tsx +101 -0
  371. package/src/components/WorkspaceDocumentSurface.tsx +204 -0
  372. package/src/components/WorkspaceUtilitySurface.tsx +22 -0
  373. package/src/components/WorktreeSwitcher.css +239 -0
  374. package/src/components/WorktreeSwitcher.tsx +890 -0
  375. package/src/components/account-documents.tsx +1162 -0
  376. package/src/components/asset-documents.tsx +812 -0
  377. package/src/components/asset-editor-persistence.ts +216 -0
  378. package/src/components/asset-selection-section.tsx +535 -0
  379. package/src/components/asset-thumbnails.tsx +312 -0
  380. package/src/components/asset-viewers/AudioViewer.tsx +201 -0
  381. package/src/components/asset-viewers/EntityModelDocument.tsx +122 -0
  382. package/src/components/asset-viewers/EnvironmentAssetDocument.tsx +440 -0
  383. package/src/components/asset-viewers/GenericJsonViewer.tsx +102 -0
  384. package/src/components/asset-viewers/ImageViewer.tsx +300 -0
  385. package/src/components/asset-viewers/JsonAssetDocument.tsx +93 -0
  386. package/src/components/asset-viewers/LiveModuleDocument.tsx +417 -0
  387. package/src/components/asset-viewers/LutAssetDocument.tsx +444 -0
  388. package/src/components/asset-viewers/ModelAssetDocument.tsx +105 -0
  389. package/src/components/asset-viewers/Object3DPreview.tsx +359 -0
  390. package/src/components/asset-viewers/OnlineAssetDetail.tsx +421 -0
  391. package/src/components/asset-viewers/PasteboardModuleDocument.tsx +67 -0
  392. package/src/components/asset-viewers/QuarksAssetDocument.tsx +526 -0
  393. package/src/components/asset-viewers/ShaderAssetDocument.tsx +743 -0
  394. package/src/components/asset-viewers/SourceAssetViewer.tsx +281 -0
  395. package/src/components/asset-viewers/SpritesheetSpriteView.tsx +102 -0
  396. package/src/components/asset-viewers/VideoViewer.tsx +101 -0
  397. package/src/components/asset-viewers/shader-source.ts +144 -0
  398. package/src/components/asset-workflow.css +731 -0
  399. package/src/components/board-guides.ts +150 -0
  400. package/src/components/compact-inspector.css +539 -0
  401. package/src/components/core-utilities.tsx +90 -0
  402. package/src/components/editor-notifications.css +40 -0
  403. package/src/components/engine-workspace.css +274 -0
  404. package/src/components/inspector-preview-section.tsx +238 -0
  405. package/src/components/inspector-property-grouping.ts +64 -0
  406. package/src/components/inspector-revert-label.ts +20 -0
  407. package/src/components/inspector-selection.ts +42 -0
  408. package/src/components/inspector-stories-gating.ts +171 -0
  409. package/src/components/inspector-transform-subject.ts +11 -0
  410. package/src/components/inspector-transform.ts +75 -0
  411. package/src/components/kind-documents.tsx +500 -0
  412. package/src/components/palette-action-publisher.tsx +140 -0
  413. package/src/components/primitives/DraftColorInput.tsx +74 -0
  414. package/src/components/product-shell.css +1829 -0
  415. package/src/components/project-tool-documents.tsx +410 -0
  416. package/src/components/scene-documents.tsx +223 -0
  417. package/src/components/stage-keyboard.tsx +37 -0
  418. package/src/components/stage-overlay-set.tsx +107 -0
  419. package/src/components/stage-presence-markers.ts +478 -0
  420. package/src/components/standard-viewport-dressing.ts +417 -0
  421. package/src/components/status-contributions.tsx +403 -0
  422. package/src/components/tool-documents.tsx +309 -0
  423. package/src/components/tool-schema-form.tsx +262 -0
  424. package/src/components/use-after-paint.ts +41 -0
  425. package/src/components/use-project-image-assets.ts +86 -0
  426. package/src/components/viewport-header-controls.css +90 -0
  427. package/src/components/viewport-surface-status.tsx +55 -0
  428. package/src/components/workspace-history.ts +32 -0
  429. package/src/components/workspace-static-panel-registry.tsx +152 -0
  430. package/src/components/workspace-surfaces.css +621 -0
  431. package/src/components/world-documents.tsx +586 -0
  432. package/src/components/world-overlay-gestures.ts +1694 -0
  433. package/src/composite-screenshot.ts +1641 -0
  434. package/src/console-sync.ts +131 -0
  435. package/src/constraint-helper.ts +338 -0
  436. package/src/content-entry-source-registry.ts +184 -0
  437. package/src/coverage/authoring-seam-evidence.ts +300 -0
  438. package/src/coverage/canvas-reveal.ts +192 -0
  439. package/src/coverage/design-time-surfaces.ts +101 -0
  440. package/src/coverage/live-seam-evidence.ts +11 -0
  441. package/src/coverage/ontology-invariants.ts +466 -0
  442. package/src/coverage/session-vitals.ts +501 -0
  443. package/src/coverage/system-seam-evidence.ts +72 -0
  444. package/src/crash-null-boundary.ts +36 -0
  445. package/src/creation-site-edit.ts +1479 -0
  446. package/src/creation-site-registry.ts +160 -0
  447. package/src/delegate-harness-registry.ts +143 -0
  448. package/src/document-context-registry.ts +177 -0
  449. package/src/document-open-registry.ts +200 -0
  450. package/src/document-preview-source.ts +20 -0
  451. package/src/document-renderer-session.ts +138 -0
  452. package/src/editor-api.ts +46 -0
  453. package/src/editor-chrome-capture.ts +139 -0
  454. package/src/editor-commands.ts +164 -0
  455. package/src/editor-console.ts +563 -0
  456. package/src/editor-current-view.ts +82 -0
  457. package/src/editor-document-probe.ts +881 -0
  458. package/src/editor-git-client.ts +115 -0
  459. package/src/editor-host-door.ts +462 -0
  460. package/src/editor-hotkeys.ts +842 -0
  461. package/src/editor-lease-view.ts +39 -0
  462. package/src/editor-lease.ts +415 -0
  463. package/src/editor-mode.ts +19 -0
  464. package/src/editor-notifications.ts +140 -0
  465. package/src/editor-presence.ts +563 -0
  466. package/src/editor-presentation-activity.ts +50 -0
  467. package/src/editor-presentation-notice.ts +42 -0
  468. package/src/editor-runtime.tsx +145 -0
  469. package/src/editor-server-response.ts +86 -0
  470. package/src/editor-session-attribution.ts +75 -0
  471. package/src/editor-session-mode.ts +54 -0
  472. package/src/editor-shell-store.ts +1304 -0
  473. package/src/editor-state-facets.ts +74 -0
  474. package/src/editor-styles.css +33 -0
  475. package/src/editor-view-presentation.ts +810 -0
  476. package/src/editor-viewport.ts +5302 -0
  477. package/src/entity-lod.ts +31 -0
  478. package/src/entity-object.ts +91 -0
  479. package/src/files/file-provider.ts +62 -0
  480. package/src/files/project-files.ts +264 -0
  481. package/src/finders/index.ts +136 -0
  482. package/src/finders/scenes-from-entrypoint-selection.ts +387 -0
  483. package/src/frame/bridge.tsx +1408 -0
  484. package/src/frame/product.ts +77 -0
  485. package/src/gameplay-dom-recording.ts +319 -0
  486. package/src/gameplay-export-state.ts +14 -0
  487. package/src/gameplay-replay.ts +417 -0
  488. package/src/gameplay-session-time.ts +9 -0
  489. package/src/gameplay-sessions.ts +204 -0
  490. package/src/harness-chat-types.ts +253 -0
  491. package/src/hierarchy-component-marks.ts +298 -0
  492. package/src/hierarchy-drop.ts +91 -0
  493. package/src/hierarchy-expansion-state.ts +80 -0
  494. package/src/hierarchy-header-slot.ts +52 -0
  495. package/src/hierarchy-internals.ts +197 -0
  496. package/src/hierarchy-kind-icon.ts +217 -0
  497. package/src/hierarchy-mark-reader.ts +73 -0
  498. package/src/hierarchy-menu-registry.ts +67 -0
  499. package/src/hierarchy-node-rows.ts +307 -0
  500. package/src/hierarchy-panel-view.ts +280 -0
  501. package/src/hierarchy-projection.ts +76 -0
  502. package/src/hierarchy-row-cache.ts +243 -0
  503. package/src/hierarchy-row-model.ts +308 -0
  504. package/src/hierarchy-rows.ts +11 -0
  505. package/src/hierarchy-walk.ts +86 -0
  506. package/src/history/editor-session.ts +25 -0
  507. package/src/history/history-commands.ts +147 -0
  508. package/src/history/history-delegate.ts +163 -0
  509. package/src/history/history-limit-notices.ts +43 -0
  510. package/src/history/history-service.ts +1173 -0
  511. package/src/history/persistence-coordinator.ts +35 -0
  512. package/src/history/project-file-history.ts +386 -0
  513. package/src/history/project-root-history-backends.ts +139 -0
  514. package/src/history/resource-registry.ts +209 -0
  515. package/src/history/snapshot-store.ts +103 -0
  516. package/src/history/source-history-backend.ts +546 -0
  517. package/src/history/types.ts +124 -0
  518. package/src/hmr-registration-group.ts +67 -0
  519. package/src/hmr-stable-react-context.ts +23 -0
  520. package/src/hotkeys.ts +188 -0
  521. package/src/inference-diagnostics.ts +69 -0
  522. package/src/initial-project.ts +80 -0
  523. package/src/inspection/active-subject.ts +578 -0
  524. package/src/inspection/active-surface.ts +142 -0
  525. package/src/inspection/compose.ts +1064 -0
  526. package/src/inspection/display.ts +170 -0
  527. package/src/inspection/document-subject.ts +109 -0
  528. package/src/inspection/game-subject.ts +85 -0
  529. package/src/inspection/model.ts +542 -0
  530. package/src/inspection/null-subject.ts +115 -0
  531. package/src/inspection/serialize.ts +357 -0
  532. package/src/inspection/use-active-inspection.ts +180 -0
  533. package/src/inspector-presentation.ts +201 -0
  534. package/src/inspector-section-registry.ts +221 -0
  535. package/src/instance-source-actions.ts +163 -0
  536. package/src/instanced-presentation.ts +164 -0
  537. package/src/js-heap.ts +71 -0
  538. package/src/key-actions.ts +91 -0
  539. package/src/keymap-presets.ts +401 -0
  540. package/src/layout-policy.ts +31 -0
  541. package/src/learn-links.ts +73 -0
  542. package/src/light-explorer-model.ts +134 -0
  543. package/src/live-canvas-frame.ts +55 -0
  544. package/src/live-document.ts +279 -0
  545. package/src/live-module-source.ts +230 -0
  546. package/src/live-session-registry.ts +220 -0
  547. package/src/live-transition.ts +633 -0
  548. package/src/manifest-project.ts +107 -0
  549. package/src/model-thumbnail.ts +523 -0
  550. package/src/native-selection-style.ts +202 -0
  551. package/src/object3d-document-write-policy.ts +137 -0
  552. package/src/packaged-runtime.ts +108 -0
  553. package/src/palettes/maya.palette.json +57 -0
  554. package/src/palettes/substance.palette.json +57 -0
  555. package/src/pasteboard-module.ts +81 -0
  556. package/src/performance-profiler.ts +367 -0
  557. package/src/performance-sources.ts +69 -0
  558. package/src/play-boot-phase.ts +145 -0
  559. package/src/presentation-surface.ts +248 -0
  560. package/src/project-adapter.ts +1143 -0
  561. package/src/project-asset-refresh.ts +26 -0
  562. package/src/project-declaration-refresh.ts +31 -0
  563. package/src/project-local-state.ts +118 -0
  564. package/src/project-manager.ts +243 -0
  565. package/src/project-module-changes.ts +163 -0
  566. package/src/project-module-split.ts +266 -0
  567. package/src/project-provenance.ts +115 -0
  568. package/src/project-ready.ts +42 -0
  569. package/src/project-session-reset.ts +67 -0
  570. package/src/project-shape.ts +68 -0
  571. package/src/project-tool-discovery.ts +66 -0
  572. package/src/project-tools.ts +107 -0
  573. package/src/project-work-types.ts +149 -0
  574. package/src/projection/three.ts +898 -0
  575. package/src/projection/types.ts +44 -0
  576. package/src/readiness.ts +113 -0
  577. package/src/reflection-probe-helper.ts +142 -0
  578. package/src/reported-play-state.ts +90 -0
  579. package/src/resolve-relative-specifier.ts +33 -0
  580. package/src/scene-document-plan.ts +315 -0
  581. package/src/scene-framing.ts +315 -0
  582. package/src/scene-live-open.ts +210 -0
  583. package/src/scene-view-fog.ts +89 -0
  584. package/src/scoped-game-css.ts +152 -0
  585. package/src/session-orphan-record.ts +193 -0
  586. package/src/session-tombstone.ts +126 -0
  587. package/src/settings/settings-provider.ts +82 -0
  588. package/src/settings-store.ts +345 -0
  589. package/src/shared-view-restore.ts +42 -0
  590. package/src/shell-store-door.ts +45 -0
  591. package/src/source-conflict.ts +122 -0
  592. package/src/spatial-handle-visuals.ts +332 -0
  593. package/src/stage-context.ts +341 -0
  594. package/src/stage-store-registry.ts +63 -0
  595. package/src/stale-chunk-recovery.ts +34 -0
  596. package/src/state-report-deferral.ts +73 -0
  597. package/src/storage/host-files-storage.ts +97 -0
  598. package/src/storage/http-storage.ts +174 -0
  599. package/src/storage/index.ts +75 -0
  600. package/src/storage/mem-storage.ts +149 -0
  601. package/src/storage/path-lock.ts +44 -0
  602. package/src/storage/paths.ts +26 -0
  603. package/src/storage/types.ts +116 -0
  604. package/src/stories/StoryComponentThumbnail.tsx +184 -0
  605. package/src/stories/StoryPreviewMount.tsx +306 -0
  606. package/src/stories/component-content-source.tsx +106 -0
  607. package/src/stories/component-states-source.ts +78 -0
  608. package/src/stories/compose-project-stories.ts +255 -0
  609. package/src/stories/pixi-story-model.ts +30 -0
  610. package/src/stories/prefabs-finder.ts +54 -0
  611. package/src/stories/prefabs-from-stories.ts +182 -0
  612. package/src/stories/project-story-discovery.ts +78 -0
  613. package/src/stories/project-story-regions.ts +24 -0
  614. package/src/stories/story-actions.ts +54 -0
  615. package/src/stories/story-capture-command.ts +124 -0
  616. package/src/stories/story-capture.ts +584 -0
  617. package/src/stories/story-declared-medium.ts +126 -0
  618. package/src/stories/story-discovery.ts +176 -0
  619. package/src/stories/story-document-openers.ts +36 -0
  620. package/src/stories/story-dom-runtime.ts +78 -0
  621. package/src/stories/story-grouping.ts +111 -0
  622. package/src/stories/story-lane.ts +88 -0
  623. package/src/stories/story-mount-turn.ts +27 -0
  624. package/src/stories/story-opener.ts +260 -0
  625. package/src/stories/story-pixi-preview.ts +408 -0
  626. package/src/stories/story-presentation.ts +215 -0
  627. package/src/stories/story-registry.ts +517 -0
  628. package/src/stories/story-three-preview.ts +807 -0
  629. package/src/stories/three-story-model.ts +96 -0
  630. package/src/story-three-preview-runtime.ts +56 -0
  631. package/src/surface-keyboard.ts +112 -0
  632. package/src/surface-state.ts +124 -0
  633. package/src/tab-bootstrap.js +628 -0
  634. package/src/tab-census.ts +198 -0
  635. package/src/tab-lifecycle-client.ts +196 -0
  636. package/src/theme-library.ts +844 -0
  637. package/src/theme-preference.ts +378 -0
  638. package/src/theme.css +3437 -0
  639. package/src/three-viewport/bone-selection-highlight.ts +119 -0
  640. package/src/three-viewport/camera-fit.ts +41 -0
  641. package/src/three-viewport/interactive-renderer.ts +132 -0
  642. package/src/three-viewport/selection-brackets.ts +310 -0
  643. package/src/three-viewport/selection-outline.ts +183 -0
  644. package/src/three-viewport/skeleton-helper.ts +61 -0
  645. package/src/three-viewport/source-color.ts +167 -0
  646. package/src/three-viewport/studio-environment.ts +96 -0
  647. package/src/three-viewport-presentation.ts +23 -0
  648. package/src/tool-contribution-play.ts +74 -0
  649. package/src/tool-loader.ts +1798 -0
  650. package/src/transform-mode-request.ts +57 -0
  651. package/src/transient-hint.ts +78 -0
  652. package/src/trigger-volume-helper.ts +116 -0
  653. package/src/ui-source/adapter-region-includes.ts +241 -0
  654. package/src/ui-source/ensure-import.ts +132 -0
  655. package/src/ui-source/file-region-resolver.ts +302 -0
  656. package/src/ui-source/inspect.ts +775 -0
  657. package/src/ui-source/oid-transform.ts +1845 -0
  658. package/src/ui-source/plan-csf-story.ts +196 -0
  659. package/src/ui-source/plan-extract-component.ts +421 -0
  660. package/src/ui-source/plan-fork-component.ts +621 -0
  661. package/src/ui-source/plan-named-style.ts +95 -0
  662. package/src/ui-source/plan-source-edit.ts +353 -0
  663. package/src/ui-source/r3f-contract-resolver.ts +327 -0
  664. package/src/ui-source/r3f-diagnostic-index.ts +165 -0
  665. package/src/ui-source/r3f-environment-binding.ts +133 -0
  666. package/src/ui-source/r3f-joint-binding.ts +251 -0
  667. package/src/ui-source/r3f-lod-binding.ts +91 -0
  668. package/src/ui-source/r3f-particle-binding.ts +235 -0
  669. package/src/ui-source/r3f-physics-binding.ts +483 -0
  670. package/src/ui-source/r3f-project-contracts.ts +444 -0
  671. package/src/ui-source/relative-import-specifier.ts +34 -0
  672. package/src/ui-source/reparent-guard.ts +544 -0
  673. package/src/ui-source/source-edit-request.ts +97 -0
  674. package/src/ui-source/source-write-backend.ts +618 -0
  675. package/src/ui-source/syntactic-prop-specs.ts +296 -0
  676. package/src/ui-source/tier-source-write-backend.ts +279 -0
  677. package/src/ui-source/ts-ast.ts +171 -0
  678. package/src/ui-source/utility-class-support.ts +169 -0
  679. package/src/ui-source/write-component-default.ts +133 -0
  680. package/src/ui-source/writer.ts +1989 -0
  681. package/src/viewport-activation-timings.ts +840 -0
  682. package/src/viewport-authoring-policy.ts +186 -0
  683. package/src/viewport-controls-hint.ts +57 -0
  684. package/src/viewport-door.ts +237 -0
  685. package/src/viewport-shading-boundary.ts +12 -0
  686. package/src/vite-error-surface.ts +141 -0
  687. package/src/wait-until.ts +37 -0
  688. package/src/workspace-areas.ts +156 -0
  689. package/src/workspace-aux-commands.ts +11 -0
  690. package/src/workspace-available-documents.ts +127 -0
  691. package/src/workspace-core-utilities.ts +31 -0
  692. package/src/workspace-document-ids.ts +59 -0
  693. package/src/workspace-document-registry.ts +612 -0
  694. package/src/workspace-document-restore.ts +145 -0
  695. package/src/workspace-host-commands.ts +141 -0
  696. package/src/workspace-persistence-gate.ts +40 -0
  697. package/src/workspace-play-utilities.ts +44 -0
  698. package/src/workspace-presets.ts +425 -0
  699. package/src/workspace-regions.ts +294 -0
  700. package/src/workspace-state-persistence.ts +536 -0
  701. package/src/workspace-static-panels.ts +73 -0
  702. package/src/workspace-status-registry.ts +121 -0
  703. package/src/workspace-style.ts +239 -0
  704. package/src/workspace-utility-commands.ts +74 -0
  705. package/src/workspace-utility-registry.ts +263 -0
  706. package/src/workspace-viewport-rect.ts +97 -0
  707. package/src/world-adoption.ts +115 -0
  708. package/src/world-document-routing.ts +104 -0
  709. package/vite-plugin-creation-site-write.ts +184 -0
  710. package/vite-plugin-creation-site.ts +80 -0
  711. package/vite-plugin-game-static.ts +303 -0
  712. package/vite-plugin-module-doorways.ts +336 -0
  713. package/vite-plugin-product-contributions.ts +197 -0
  714. package/vite-plugin-project-game-static.ts +125 -0
  715. package/vite-plugin-project-jsx-js.ts +65 -0
  716. package/vite-plugin-project-root-absolute-assets.ts +359 -0
  717. package/vite-plugin-shared-react.ts +420 -0
  718. package/vite-plugin-shared-three.ts +203 -0
  719. package/vite-plugin-ui-oid.ts +2106 -0
@@ -0,0 +1,1527 @@
1
+ Bundled license notices
2
+ ======================
3
+ These notices accompany code incorporated into this package. Separate npm dependencies retain their own licenses.
4
+
5
+
6
+ @volter-ai-dev/supercode-ui@0.1.83
7
+ Declared license: MIT OR Apache-2.0
8
+
9
+ --- https://github.com/volter-ai/supercode/blob/b4bac5b48aaae2691b8662b7987ff208d6265d2d/LICENSE-MIT ---
10
+
11
+ MIT License
12
+
13
+ Copyright (c) 2026 supercode contributors
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy
16
+ of this software and associated documentation files (the "Software"), to deal
17
+ in the Software without restriction, including without limitation the rights
18
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19
+ copies of the Software, and to permit persons to whom the Software is
20
+ furnished to do so, subject to the following conditions:
21
+
22
+ The above copyright notice and this permission notice shall be included in all
23
+ copies or substantial portions of the Software.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31
+ SOFTWARE.
32
+
33
+
34
+ @volter/editor-project@0.5.57
35
+ Declared license: Apache-2.0
36
+
37
+ --- packages/editor-project/LICENSE ---
38
+
39
+
40
+ Apache License
41
+ Version 2.0, January 2004
42
+ http://www.apache.org/licenses/
43
+
44
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
45
+
46
+ 1. Definitions.
47
+
48
+ "License" shall mean the terms and conditions for use, reproduction,
49
+ and distribution as defined by Sections 1 through 9 of this document.
50
+
51
+ "Licensor" shall mean the copyright owner or entity authorized by
52
+ the copyright owner that is granting the License.
53
+
54
+ "Legal Entity" shall mean the union of the acting entity and all
55
+ other entities that control, are controlled by, or are under common
56
+ control with that entity. For the purposes of this definition,
57
+ "control" means (i) the power, direct or indirect, to cause the
58
+ direction or management of such entity, whether by contract or
59
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
60
+ outstanding shares, or (iii) beneficial ownership of such entity.
61
+
62
+ "You" (or "Your") shall mean an individual or Legal Entity
63
+ exercising permissions granted by this License.
64
+
65
+ "Source" form shall mean the preferred form for making modifications,
66
+ including but not limited to software source code, documentation
67
+ source, and configuration files.
68
+
69
+ "Object" form shall mean any form resulting from mechanical
70
+ transformation or translation of a Source form, including but
71
+ not limited to compiled object code, generated documentation,
72
+ and conversions to other media types.
73
+
74
+ "Work" shall mean the work of authorship, whether in Source or
75
+ Object form, made available under the License, as indicated by a
76
+ copyright notice that is included in or attached to the work
77
+ (an example is provided in the Appendix below).
78
+
79
+ "Derivative Works" shall mean any work, whether in Source or Object
80
+ form, that is based on (or derived from) the Work and for which the
81
+ editorial revisions, annotations, elaborations, or other modifications
82
+ represent, as a whole, an original work of authorship. For the purposes
83
+ of this License, Derivative Works shall not include works that remain
84
+ separable from, or merely link (or bind by name) to the interfaces of,
85
+ the Work and Derivative Works thereof.
86
+
87
+ "Contribution" shall mean any work of authorship, including
88
+ the original version of the Work and any modifications or additions
89
+ to that Work or Derivative Works thereof, that is intentionally
90
+ submitted to Licensor for inclusion in the Work by the copyright owner
91
+ or by an individual or Legal Entity authorized to submit on behalf of
92
+ the copyright owner. For the purposes of this definition, "submitted"
93
+ means any form of electronic, verbal, or written communication sent
94
+ to the Licensor or its representatives, including but not limited to
95
+ communication on electronic mailing lists, source code control systems,
96
+ and issue tracking systems that are managed by, or on behalf of, the
97
+ Licensor for the purpose of discussing and improving the Work, but
98
+ excluding communication that is conspicuously marked or otherwise
99
+ designated in writing by the copyright owner as "Not a Contribution."
100
+
101
+ "Contributor" shall mean Licensor and any individual or Legal Entity
102
+ on behalf of whom a Contribution has been received by Licensor and
103
+ subsequently incorporated within the Work.
104
+
105
+ 2. Grant of Copyright License. Subject to the terms and conditions of
106
+ this License, each Contributor hereby grants to You a perpetual,
107
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
108
+ copyright license to reproduce, prepare Derivative Works of,
109
+ publicly display, publicly perform, sublicense, and distribute the
110
+ Work and such Derivative Works in Source or Object form.
111
+
112
+ 3. Grant of Patent License. Subject to the terms and conditions of
113
+ this License, each Contributor hereby grants to You a perpetual,
114
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
115
+ (except as stated in this section) patent license to make, have made,
116
+ use, offer to sell, sell, import, and otherwise transfer the Work,
117
+ where such license applies only to those patent claims licensable
118
+ by such Contributor that are necessarily infringed by their
119
+ Contribution(s) alone or by combination of their Contribution(s)
120
+ with the Work to which such Contribution(s) was submitted. If You
121
+ institute patent litigation against any entity (including a
122
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
123
+ or a Contribution incorporated within the Work constitutes direct
124
+ or contributory patent infringement, then any patent licenses
125
+ granted to You under this License for that Work shall terminate
126
+ as of the date such litigation is filed.
127
+
128
+ 4. Redistribution. You may reproduce and distribute copies of the
129
+ Work or Derivative Works thereof in any medium, with or without
130
+ modifications, and in Source or Object form, provided that You
131
+ meet the following conditions:
132
+
133
+ (a) You must give any other recipients of the Work or
134
+ Derivative Works a copy of this License; and
135
+
136
+ (b) You must cause any modified files to carry prominent notices
137
+ stating that You changed the files; and
138
+
139
+ (c) You must retain, in the Source form of any Derivative Works
140
+ that You distribute, all copyright, patent, trademark, and
141
+ attribution notices from the Source form of the Work,
142
+ excluding those notices that do not pertain to any part of
143
+ the Derivative Works; and
144
+
145
+ (d) If the Work includes a "NOTICE" text file as part of its
146
+ distribution, then any Derivative Works that You distribute must
147
+ include a readable copy of the attribution notices contained
148
+ within such NOTICE file, excluding those notices that do not
149
+ pertain to any part of the Derivative Works, in at least one
150
+ of the following places: within a NOTICE text file distributed
151
+ as part of the Derivative Works; within the Source form or
152
+ documentation, if provided along with the Derivative Works; or,
153
+ within a display generated by the Derivative Works, if and
154
+ wherever such third-party notices normally appear. The contents
155
+ of the NOTICE file are for informational purposes only and
156
+ do not modify the License. You may add Your own attribution
157
+ notices within Derivative Works that You distribute, alongside
158
+ or as an addendum to the NOTICE text from the Work, provided
159
+ that such additional attribution notices cannot be construed
160
+ as modifying the License.
161
+
162
+ You may add Your own copyright statement to Your modifications and
163
+ may provide additional or different license terms and conditions
164
+ for use, reproduction, or distribution of Your modifications, or
165
+ for any such Derivative Works as a whole, provided Your use,
166
+ reproduction, and distribution of the Work otherwise complies with
167
+ the conditions stated in this License.
168
+
169
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
170
+ any Contribution intentionally submitted for inclusion in the Work
171
+ by You to the Licensor shall be under the terms and conditions of
172
+ this License, without any additional terms or conditions.
173
+ Notwithstanding the above, nothing herein shall supersede or modify
174
+ the terms of any separate license agreement you may have executed
175
+ with Licensor regarding such Contributions.
176
+
177
+ 6. Trademarks. This License does not grant permission to use the trade
178
+ names, trademarks, service marks, or product names of the Licensor,
179
+ except as required for reasonable and customary use in describing the
180
+ origin of the Work and reproducing the content of the NOTICE file.
181
+
182
+ 7. Disclaimer of Warranty. Unless required by applicable law or
183
+ agreed to in writing, Licensor provides the Work (and each
184
+ Contributor provides its Contributions) on an "AS IS" BASIS,
185
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
186
+ implied, including, without limitation, any warranties or conditions
187
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
188
+ PARTICULAR PURPOSE. You are solely responsible for determining the
189
+ appropriateness of using or redistributing the Work and assume any
190
+ risks associated with Your exercise of permissions under this License.
191
+
192
+ 8. Limitation of Liability. In no event and under no legal theory,
193
+ whether in tort (including negligence), contract, or otherwise,
194
+ unless required by applicable law (such as deliberate and grossly
195
+ negligent acts) or agreed to in writing, shall any Contributor be
196
+ liable to You for damages, including any direct, indirect, special,
197
+ incidental, or consequential damages of any character arising as a
198
+ result of this License or out of the use or inability to use the
199
+ Work (including but not limited to damages for loss of goodwill,
200
+ work stoppage, computer failure or malfunction, or any and all
201
+ other commercial damages or losses), even if such Contributor
202
+ has been advised of the possibility of such damages.
203
+
204
+ 9. Accepting Warranty or Additional Liability. While redistributing
205
+ the Work or Derivative Works thereof, You may choose to offer,
206
+ and charge a fee for, acceptance of support, warranty, indemnity,
207
+ or other liability obligations and/or rights consistent with this
208
+ License. However, in accepting such obligations, You may act only
209
+ on Your own behalf and on Your sole responsibility, not on behalf
210
+ of any other Contributor, and only if You agree to indemnify,
211
+ defend, and hold each Contributor harmless for any liability
212
+ incurred by, or claims asserted against, such Contributor by reason
213
+ of your accepting any such warranty or additional liability.
214
+
215
+ END OF TERMS AND CONDITIONS
216
+
217
+ APPENDIX: How to apply the Apache License to your work.
218
+
219
+ To apply the Apache License to your work, attach the following
220
+ boilerplate notice, with the fields enclosed by brackets "[]"
221
+ replaced with your own identifying information. (Don't include
222
+ the brackets!) The text should be enclosed in the appropriate
223
+ comment syntax for the file format. We also recommend that a
224
+ file or class name and description of purpose be included on the
225
+ same "printed page" as the copyright notice for easier
226
+ identification within third-party archives.
227
+
228
+ Copyright 2026 Volter AI, Inc.
229
+
230
+ Licensed under the Apache License, Version 2.0 (the "License");
231
+ you may not use this file except in compliance with the License.
232
+ You may obtain a copy of the License at
233
+
234
+ http://www.apache.org/licenses/LICENSE-2.0
235
+
236
+ Unless required by applicable law or agreed to in writing, software
237
+ distributed under the License is distributed on an "AS IS" BASIS,
238
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
239
+ See the License for the specific language governing permissions and
240
+ limitations under the License.
241
+
242
+
243
+ @volter/editor-sdk@0.5.57
244
+ Declared license: Apache-2.0
245
+
246
+ --- packages/editor-sdk/LICENSE ---
247
+
248
+
249
+ Apache License
250
+ Version 2.0, January 2004
251
+ http://www.apache.org/licenses/
252
+
253
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
254
+
255
+ 1. Definitions.
256
+
257
+ "License" shall mean the terms and conditions for use, reproduction,
258
+ and distribution as defined by Sections 1 through 9 of this document.
259
+
260
+ "Licensor" shall mean the copyright owner or entity authorized by
261
+ the copyright owner that is granting the License.
262
+
263
+ "Legal Entity" shall mean the union of the acting entity and all
264
+ other entities that control, are controlled by, or are under common
265
+ control with that entity. For the purposes of this definition,
266
+ "control" means (i) the power, direct or indirect, to cause the
267
+ direction or management of such entity, whether by contract or
268
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
269
+ outstanding shares, or (iii) beneficial ownership of such entity.
270
+
271
+ "You" (or "Your") shall mean an individual or Legal Entity
272
+ exercising permissions granted by this License.
273
+
274
+ "Source" form shall mean the preferred form for making modifications,
275
+ including but not limited to software source code, documentation
276
+ source, and configuration files.
277
+
278
+ "Object" form shall mean any form resulting from mechanical
279
+ transformation or translation of a Source form, including but
280
+ not limited to compiled object code, generated documentation,
281
+ and conversions to other media types.
282
+
283
+ "Work" shall mean the work of authorship, whether in Source or
284
+ Object form, made available under the License, as indicated by a
285
+ copyright notice that is included in or attached to the work
286
+ (an example is provided in the Appendix below).
287
+
288
+ "Derivative Works" shall mean any work, whether in Source or Object
289
+ form, that is based on (or derived from) the Work and for which the
290
+ editorial revisions, annotations, elaborations, or other modifications
291
+ represent, as a whole, an original work of authorship. For the purposes
292
+ of this License, Derivative Works shall not include works that remain
293
+ separable from, or merely link (or bind by name) to the interfaces of,
294
+ the Work and Derivative Works thereof.
295
+
296
+ "Contribution" shall mean any work of authorship, including
297
+ the original version of the Work and any modifications or additions
298
+ to that Work or Derivative Works thereof, that is intentionally
299
+ submitted to Licensor for inclusion in the Work by the copyright owner
300
+ or by an individual or Legal Entity authorized to submit on behalf of
301
+ the copyright owner. For the purposes of this definition, "submitted"
302
+ means any form of electronic, verbal, or written communication sent
303
+ to the Licensor or its representatives, including but not limited to
304
+ communication on electronic mailing lists, source code control systems,
305
+ and issue tracking systems that are managed by, or on behalf of, the
306
+ Licensor for the purpose of discussing and improving the Work, but
307
+ excluding communication that is conspicuously marked or otherwise
308
+ designated in writing by the copyright owner as "Not a Contribution."
309
+
310
+ "Contributor" shall mean Licensor and any individual or Legal Entity
311
+ on behalf of whom a Contribution has been received by Licensor and
312
+ subsequently incorporated within the Work.
313
+
314
+ 2. Grant of Copyright License. Subject to the terms and conditions of
315
+ this License, each Contributor hereby grants to You a perpetual,
316
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
317
+ copyright license to reproduce, prepare Derivative Works of,
318
+ publicly display, publicly perform, sublicense, and distribute the
319
+ Work and such Derivative Works in Source or Object form.
320
+
321
+ 3. Grant of Patent License. Subject to the terms and conditions of
322
+ this License, each Contributor hereby grants to You a perpetual,
323
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
324
+ (except as stated in this section) patent license to make, have made,
325
+ use, offer to sell, sell, import, and otherwise transfer the Work,
326
+ where such license applies only to those patent claims licensable
327
+ by such Contributor that are necessarily infringed by their
328
+ Contribution(s) alone or by combination of their Contribution(s)
329
+ with the Work to which such Contribution(s) was submitted. If You
330
+ institute patent litigation against any entity (including a
331
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
332
+ or a Contribution incorporated within the Work constitutes direct
333
+ or contributory patent infringement, then any patent licenses
334
+ granted to You under this License for that Work shall terminate
335
+ as of the date such litigation is filed.
336
+
337
+ 4. Redistribution. You may reproduce and distribute copies of the
338
+ Work or Derivative Works thereof in any medium, with or without
339
+ modifications, and in Source or Object form, provided that You
340
+ meet the following conditions:
341
+
342
+ (a) You must give any other recipients of the Work or
343
+ Derivative Works a copy of this License; and
344
+
345
+ (b) You must cause any modified files to carry prominent notices
346
+ stating that You changed the files; and
347
+
348
+ (c) You must retain, in the Source form of any Derivative Works
349
+ that You distribute, all copyright, patent, trademark, and
350
+ attribution notices from the Source form of the Work,
351
+ excluding those notices that do not pertain to any part of
352
+ the Derivative Works; and
353
+
354
+ (d) If the Work includes a "NOTICE" text file as part of its
355
+ distribution, then any Derivative Works that You distribute must
356
+ include a readable copy of the attribution notices contained
357
+ within such NOTICE file, excluding those notices that do not
358
+ pertain to any part of the Derivative Works, in at least one
359
+ of the following places: within a NOTICE text file distributed
360
+ as part of the Derivative Works; within the Source form or
361
+ documentation, if provided along with the Derivative Works; or,
362
+ within a display generated by the Derivative Works, if and
363
+ wherever such third-party notices normally appear. The contents
364
+ of the NOTICE file are for informational purposes only and
365
+ do not modify the License. You may add Your own attribution
366
+ notices within Derivative Works that You distribute, alongside
367
+ or as an addendum to the NOTICE text from the Work, provided
368
+ that such additional attribution notices cannot be construed
369
+ as modifying the License.
370
+
371
+ You may add Your own copyright statement to Your modifications and
372
+ may provide additional or different license terms and conditions
373
+ for use, reproduction, or distribution of Your modifications, or
374
+ for any such Derivative Works as a whole, provided Your use,
375
+ reproduction, and distribution of the Work otherwise complies with
376
+ the conditions stated in this License.
377
+
378
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
379
+ any Contribution intentionally submitted for inclusion in the Work
380
+ by You to the Licensor shall be under the terms and conditions of
381
+ this License, without any additional terms or conditions.
382
+ Notwithstanding the above, nothing herein shall supersede or modify
383
+ the terms of any separate license agreement you may have executed
384
+ with Licensor regarding such Contributions.
385
+
386
+ 6. Trademarks. This License does not grant permission to use the trade
387
+ names, trademarks, service marks, or product names of the Licensor,
388
+ except as required for reasonable and customary use in describing the
389
+ origin of the Work and reproducing the content of the NOTICE file.
390
+
391
+ 7. Disclaimer of Warranty. Unless required by applicable law or
392
+ agreed to in writing, Licensor provides the Work (and each
393
+ Contributor provides its Contributions) on an "AS IS" BASIS,
394
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
395
+ implied, including, without limitation, any warranties or conditions
396
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
397
+ PARTICULAR PURPOSE. You are solely responsible for determining the
398
+ appropriateness of using or redistributing the Work and assume any
399
+ risks associated with Your exercise of permissions under this License.
400
+
401
+ 8. Limitation of Liability. In no event and under no legal theory,
402
+ whether in tort (including negligence), contract, or otherwise,
403
+ unless required by applicable law (such as deliberate and grossly
404
+ negligent acts) or agreed to in writing, shall any Contributor be
405
+ liable to You for damages, including any direct, indirect, special,
406
+ incidental, or consequential damages of any character arising as a
407
+ result of this License or out of the use or inability to use the
408
+ Work (including but not limited to damages for loss of goodwill,
409
+ work stoppage, computer failure or malfunction, or any and all
410
+ other commercial damages or losses), even if such Contributor
411
+ has been advised of the possibility of such damages.
412
+
413
+ 9. Accepting Warranty or Additional Liability. While redistributing
414
+ the Work or Derivative Works thereof, You may choose to offer,
415
+ and charge a fee for, acceptance of support, warranty, indemnity,
416
+ or other liability obligations and/or rights consistent with this
417
+ License. However, in accepting such obligations, You may act only
418
+ on Your own behalf and on Your sole responsibility, not on behalf
419
+ of any other Contributor, and only if You agree to indemnify,
420
+ defend, and hold each Contributor harmless for any liability
421
+ incurred by, or claims asserted against, such Contributor by reason
422
+ of your accepting any such warranty or additional liability.
423
+
424
+ END OF TERMS AND CONDITIONS
425
+
426
+ APPENDIX: How to apply the Apache License to your work.
427
+
428
+ To apply the Apache License to your work, attach the following
429
+ boilerplate notice, with the fields enclosed by brackets "[]"
430
+ replaced with your own identifying information. (Don't include
431
+ the brackets!) The text should be enclosed in the appropriate
432
+ comment syntax for the file format. We also recommend that a
433
+ file or class name and description of purpose be included on the
434
+ same "printed page" as the copyright notice for easier
435
+ identification within third-party archives.
436
+
437
+ Copyright 2026 Volter AI, Inc.
438
+
439
+ Licensed under the Apache License, Version 2.0 (the "License");
440
+ you may not use this file except in compliance with the License.
441
+ You may obtain a copy of the License at
442
+
443
+ http://www.apache.org/licenses/LICENSE-2.0
444
+
445
+ Unless required by applicable law or agreed to in writing, software
446
+ distributed under the License is distributed on an "AS IS" BASIS,
447
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
448
+ See the License for the specific language governing permissions and
449
+ limitations under the License.
450
+
451
+
452
+ --- packages/editor-sdk/NOTICE ---
453
+
454
+ Copyright 2026 Volter AI, Inc.
455
+
456
+ Project tool registry, provider execution and related types were transferred
457
+ from the Apache-2.0 @vgai/sdk package. Original source hashes and revision are
458
+ recorded in provenance/editor-server.json.
459
+
460
+ The project output-root policy is Apache-2.0, transferred from the original
461
+ SDK; its exact source is recorded in provenance/editor-server.json.
462
+
463
+
464
+ @volter/editor-threejs@0.5.57
465
+ Declared license: AGPL-3.0-only AND Apache-2.0
466
+
467
+ --- packages/editor-threejs/LICENSE ---
468
+
469
+ GNU AFFERO GENERAL PUBLIC LICENSE
470
+ Version 3, 19 November 2007
471
+
472
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
473
+ Everyone is permitted to copy and distribute verbatim copies
474
+ of this license document, but changing it is not allowed.
475
+
476
+ Preamble
477
+
478
+ The GNU Affero General Public License is a free, copyleft license for
479
+ software and other kinds of works, specifically designed to ensure
480
+ cooperation with the community in the case of network server software.
481
+
482
+ The licenses for most software and other practical works are designed
483
+ to take away your freedom to share and change the works. By contrast,
484
+ our General Public Licenses are intended to guarantee your freedom to
485
+ share and change all versions of a program--to make sure it remains free
486
+ software for all its users.
487
+
488
+ When we speak of free software, we are referring to freedom, not
489
+ price. Our General Public Licenses are designed to make sure that you
490
+ have the freedom to distribute copies of free software (and charge for
491
+ them if you wish), that you receive source code or can get it if you
492
+ want it, that you can change the software or use pieces of it in new
493
+ free programs, and that you know you can do these things.
494
+
495
+ Developers that use our General Public Licenses protect your rights
496
+ with two steps: (1) assert copyright on the software, and (2) offer
497
+ you this License which gives you legal permission to copy, distribute
498
+ and/or modify the software.
499
+
500
+ A secondary benefit of defending all users' freedom is that
501
+ improvements made in alternate versions of the program, if they
502
+ receive widespread use, become available for other developers to
503
+ incorporate. Many developers of free software are heartened and
504
+ encouraged by the resulting cooperation. However, in the case of
505
+ software used on network servers, this result may fail to come about.
506
+ The GNU General Public License permits making a modified version and
507
+ letting the public access it on a server without ever releasing its
508
+ source code to the public.
509
+
510
+ The GNU Affero General Public License is designed specifically to
511
+ ensure that, in such cases, the modified source code becomes available
512
+ to the community. It requires the operator of a network server to
513
+ provide the source code of the modified version running there to the
514
+ users of that server. Therefore, public use of a modified version, on
515
+ a publicly accessible server, gives the public access to the source
516
+ code of the modified version.
517
+
518
+ An older license, called the Affero General Public License and
519
+ published by Affero, was designed to accomplish similar goals. This is
520
+ a different license, not a version of the Affero GPL, but Affero has
521
+ released a new version of the Affero GPL which permits relicensing under
522
+ this license.
523
+
524
+ The precise terms and conditions for copying, distribution and
525
+ modification follow.
526
+
527
+ TERMS AND CONDITIONS
528
+
529
+ 0. Definitions.
530
+
531
+ "This License" refers to version 3 of the GNU Affero General Public License.
532
+
533
+ "Copyright" also means copyright-like laws that apply to other kinds of
534
+ works, such as semiconductor masks.
535
+
536
+ "The Program" refers to any copyrightable work licensed under this
537
+ License. Each licensee is addressed as "you". "Licensees" and
538
+ "recipients" may be individuals or organizations.
539
+
540
+ To "modify" a work means to copy from or adapt all or part of the work
541
+ in a fashion requiring copyright permission, other than the making of an
542
+ exact copy. The resulting work is called a "modified version" of the
543
+ earlier work or a work "based on" the earlier work.
544
+
545
+ A "covered work" means either the unmodified Program or a work based
546
+ on the Program.
547
+
548
+ To "propagate" a work means to do anything with it that, without
549
+ permission, would make you directly or secondarily liable for
550
+ infringement under applicable copyright law, except executing it on a
551
+ computer or modifying a private copy. Propagation includes copying,
552
+ distribution (with or without modification), making available to the
553
+ public, and in some countries other activities as well.
554
+
555
+ To "convey" a work means any kind of propagation that enables other
556
+ parties to make or receive copies. Mere interaction with a user through
557
+ a computer network, with no transfer of a copy, is not conveying.
558
+
559
+ An interactive user interface displays "Appropriate Legal Notices"
560
+ to the extent that it includes a convenient and prominently visible
561
+ feature that (1) displays an appropriate copyright notice, and (2)
562
+ tells the user that there is no warranty for the work (except to the
563
+ extent that warranties are provided), that licensees may convey the
564
+ work under this License, and how to view a copy of this License. If
565
+ the interface presents a list of user commands or options, such as a
566
+ menu, a prominent item in the list meets this criterion.
567
+
568
+ 1. Source Code.
569
+
570
+ The "source code" for a work means the preferred form of the work
571
+ for making modifications to it. "Object code" means any non-source
572
+ form of a work.
573
+
574
+ A "Standard Interface" means an interface that either is an official
575
+ standard defined by a recognized standards body, or, in the case of
576
+ interfaces specified for a particular programming language, one that
577
+ is widely used among developers working in that language.
578
+
579
+ The "System Libraries" of an executable work include anything, other
580
+ than the work as a whole, that (a) is included in the normal form of
581
+ packaging a Major Component, but which is not part of that Major
582
+ Component, and (b) serves only to enable use of the work with that
583
+ Major Component, or to implement a Standard Interface for which an
584
+ implementation is available to the public in source code form. A
585
+ "Major Component", in this context, means a major essential component
586
+ (kernel, window system, and so on) of the specific operating system
587
+ (if any) on which the executable work runs, or a compiler used to
588
+ produce the work, or an object code interpreter used to run it.
589
+
590
+ The "Corresponding Source" for a work in object code form means all
591
+ the source code needed to generate, install, and (for an executable
592
+ work) run the object code and to modify the work, including scripts to
593
+ control those activities. However, it does not include the work's
594
+ System Libraries, or general-purpose tools or generally available free
595
+ programs which are used unmodified in performing those activities but
596
+ which are not part of the work. For example, Corresponding Source
597
+ includes interface definition files associated with source files for
598
+ the work, and the source code for shared libraries and dynamically
599
+ linked subprograms that the work is specifically designed to require,
600
+ such as by intimate data communication or control flow between those
601
+ subprograms and other parts of the work.
602
+
603
+ The Corresponding Source need not include anything that users
604
+ can regenerate automatically from other parts of the Corresponding
605
+ Source.
606
+
607
+ The Corresponding Source for a work in source code form is that
608
+ same work.
609
+
610
+ 2. Basic Permissions.
611
+
612
+ All rights granted under this License are granted for the term of
613
+ copyright on the Program, and are irrevocable provided the stated
614
+ conditions are met. This License explicitly affirms your unlimited
615
+ permission to run the unmodified Program. The output from running a
616
+ covered work is covered by this License only if the output, given its
617
+ content, constitutes a covered work. This License acknowledges your
618
+ rights of fair use or other equivalent, as provided by copyright law.
619
+
620
+ You may make, run and propagate covered works that you do not
621
+ convey, without conditions so long as your license otherwise remains
622
+ in force. You may convey covered works to others for the sole purpose
623
+ of having them make modifications exclusively for you, or provide you
624
+ with facilities for running those works, provided that you comply with
625
+ the terms of this License in conveying all material for which you do
626
+ not control copyright. Those thus making or running the covered works
627
+ for you must do so exclusively on your behalf, under your direction
628
+ and control, on terms that prohibit them from making any copies of
629
+ your copyrighted material outside their relationship with you.
630
+
631
+ Conveying under any other circumstances is permitted solely under
632
+ the conditions stated below. Sublicensing is not allowed; section 10
633
+ makes it unnecessary.
634
+
635
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
636
+
637
+ No covered work shall be deemed part of an effective technological
638
+ measure under any applicable law fulfilling obligations under article
639
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
640
+ similar laws prohibiting or restricting circumvention of such
641
+ measures.
642
+
643
+ When you convey a covered work, you waive any legal power to forbid
644
+ circumvention of technological measures to the extent such circumvention
645
+ is effected by exercising rights under this License with respect to
646
+ the covered work, and you disclaim any intention to limit operation or
647
+ modification of the work as a means of enforcing, against the work's
648
+ users, your or third parties' legal rights to forbid circumvention of
649
+ technological measures.
650
+
651
+ 4. Conveying Verbatim Copies.
652
+
653
+ You may convey verbatim copies of the Program's source code as you
654
+ receive it, in any medium, provided that you conspicuously and
655
+ appropriately publish on each copy an appropriate copyright notice;
656
+ keep intact all notices stating that this License and any
657
+ non-permissive terms added in accord with section 7 apply to the code;
658
+ keep intact all notices of the absence of any warranty; and give all
659
+ recipients a copy of this License along with the Program.
660
+
661
+ You may charge any price or no price for each copy that you convey,
662
+ and you may offer support or warranty protection for a fee.
663
+
664
+ 5. Conveying Modified Source Versions.
665
+
666
+ You may convey a work based on the Program, or the modifications to
667
+ produce it from the Program, in the form of source code under the
668
+ terms of section 4, provided that you also meet all of these conditions:
669
+
670
+ a) The work must carry prominent notices stating that you modified
671
+ it, and giving a relevant date.
672
+
673
+ b) The work must carry prominent notices stating that it is
674
+ released under this License and any conditions added under section
675
+ 7. This requirement modifies the requirement in section 4 to
676
+ "keep intact all notices".
677
+
678
+ c) You must license the entire work, as a whole, under this
679
+ License to anyone who comes into possession of a copy. This
680
+ License will therefore apply, along with any applicable section 7
681
+ additional terms, to the whole of the work, and all its parts,
682
+ regardless of how they are packaged. This License gives no
683
+ permission to license the work in any other way, but it does not
684
+ invalidate such permission if you have separately received it.
685
+
686
+ d) If the work has interactive user interfaces, each must display
687
+ Appropriate Legal Notices; however, if the Program has interactive
688
+ interfaces that do not display Appropriate Legal Notices, your
689
+ work need not make them do so.
690
+
691
+ A compilation of a covered work with other separate and independent
692
+ works, which are not by their nature extensions of the covered work,
693
+ and which are not combined with it such as to form a larger program,
694
+ in or on a volume of a storage or distribution medium, is called an
695
+ "aggregate" if the compilation and its resulting copyright are not
696
+ used to limit the access or legal rights of the compilation's users
697
+ beyond what the individual works permit. Inclusion of a covered work
698
+ in an aggregate does not cause this License to apply to the other
699
+ parts of the aggregate.
700
+
701
+ 6. Conveying Non-Source Forms.
702
+
703
+ You may convey a covered work in object code form under the terms
704
+ of sections 4 and 5, provided that you also convey the
705
+ machine-readable Corresponding Source under the terms of this License,
706
+ in one of these ways:
707
+
708
+ a) Convey the object code in, or embodied in, a physical product
709
+ (including a physical distribution medium), accompanied by the
710
+ Corresponding Source fixed on a durable physical medium
711
+ customarily used for software interchange.
712
+
713
+ b) Convey the object code in, or embodied in, a physical product
714
+ (including a physical distribution medium), accompanied by a
715
+ written offer, valid for at least three years and valid for as
716
+ long as you offer spare parts or customer support for that product
717
+ model, to give anyone who possesses the object code either (1) a
718
+ copy of the Corresponding Source for all the software in the
719
+ product that is covered by this License, on a durable physical
720
+ medium customarily used for software interchange, for a price no
721
+ more than your reasonable cost of physically performing this
722
+ conveying of source, or (2) access to copy the
723
+ Corresponding Source from a network server at no charge.
724
+
725
+ c) Convey individual copies of the object code with a copy of the
726
+ written offer to provide the Corresponding Source. This
727
+ alternative is allowed only occasionally and noncommercially, and
728
+ only if you received the object code with such an offer, in accord
729
+ with subsection 6b.
730
+
731
+ d) Convey the object code by offering access from a designated
732
+ place (gratis or for a charge), and offer equivalent access to the
733
+ Corresponding Source in the same way through the same place at no
734
+ further charge. You need not require recipients to copy the
735
+ Corresponding Source along with the object code. If the place to
736
+ copy the object code is a network server, the Corresponding Source
737
+ may be on a different server (operated by you or a third party)
738
+ that supports equivalent copying facilities, provided you maintain
739
+ clear directions next to the object code saying where to find the
740
+ Corresponding Source. Regardless of what server hosts the
741
+ Corresponding Source, you remain obligated to ensure that it is
742
+ available for as long as needed to satisfy these requirements.
743
+
744
+ e) Convey the object code using peer-to-peer transmission, provided
745
+ you inform other peers where the object code and Corresponding
746
+ Source of the work are being offered to the general public at no
747
+ charge under subsection 6d.
748
+
749
+ A separable portion of the object code, whose source code is excluded
750
+ from the Corresponding Source as a System Library, need not be
751
+ included in conveying the object code work.
752
+
753
+ A "User Product" is either (1) a "consumer product", which means any
754
+ tangible personal property which is normally used for personal, family,
755
+ or household purposes, or (2) anything designed or sold for incorporation
756
+ into a dwelling. In determining whether a product is a consumer product,
757
+ doubtful cases shall be resolved in favor of coverage. For a particular
758
+ product received by a particular user, "normally used" refers to a
759
+ typical or common use of that class of product, regardless of the status
760
+ of the particular user or of the way in which the particular user
761
+ actually uses, or expects or is expected to use, the product. A product
762
+ is a consumer product regardless of whether the product has substantial
763
+ commercial, industrial or non-consumer uses, unless such uses represent
764
+ the only significant mode of use of the product.
765
+
766
+ "Installation Information" for a User Product means any methods,
767
+ procedures, authorization keys, or other information required to install
768
+ and execute modified versions of a covered work in that User Product from
769
+ a modified version of its Corresponding Source. The information must
770
+ suffice to ensure that the continued functioning of the modified object
771
+ code is in no case prevented or interfered with solely because
772
+ modification has been made.
773
+
774
+ If you convey an object code work under this section in, or with, or
775
+ specifically for use in, a User Product, and the conveying occurs as
776
+ part of a transaction in which the right of possession and use of the
777
+ User Product is transferred to the recipient in perpetuity or for a
778
+ fixed term (regardless of how the transaction is characterized), the
779
+ Corresponding Source conveyed under this section must be accompanied
780
+ by the Installation Information. But this requirement does not apply
781
+ if neither you nor any third party retains the ability to install
782
+ modified object code on the User Product (for example, the work has
783
+ been installed in ROM).
784
+
785
+ The requirement to provide Installation Information does not include a
786
+ requirement to continue to provide support service, warranty, or updates
787
+ for a work that has been modified or installed by the recipient, or for
788
+ the User Product in which it has been modified or installed. Access to a
789
+ network may be denied when the modification itself materially and
790
+ adversely affects the operation of the network or violates the rules and
791
+ protocols for communication across the network.
792
+
793
+ Corresponding Source conveyed, and Installation Information provided,
794
+ in accord with this section must be in a format that is publicly
795
+ documented (and with an implementation available to the public in
796
+ source code form), and must require no special password or key for
797
+ unpacking, reading or copying.
798
+
799
+ 7. Additional Terms.
800
+
801
+ "Additional permissions" are terms that supplement the terms of this
802
+ License by making exceptions from one or more of its conditions.
803
+ Additional permissions that are applicable to the entire Program shall
804
+ be treated as though they were included in this License, to the extent
805
+ that they are valid under applicable law. If additional permissions
806
+ apply only to part of the Program, that part may be used separately
807
+ under those permissions, but the entire Program remains governed by
808
+ this License without regard to the additional permissions.
809
+
810
+ When you convey a copy of a covered work, you may at your option
811
+ remove any additional permissions from that copy, or from any part of
812
+ it. (Additional permissions may be written to require their own
813
+ removal in certain cases when you modify the work.) You may place
814
+ additional permissions on material, added by you to a covered work,
815
+ for which you have or can give appropriate copyright permission.
816
+
817
+ Notwithstanding any other provision of this License, for material you
818
+ add to a covered work, you may (if authorized by the copyright holders of
819
+ that material) supplement the terms of this License with terms:
820
+
821
+ a) Disclaiming warranty or limiting liability differently from the
822
+ terms of sections 15 and 16 of this License; or
823
+
824
+ b) Requiring preservation of specified reasonable legal notices or
825
+ author attributions in that material or in the Appropriate Legal
826
+ Notices displayed by works containing it; or
827
+
828
+ c) Prohibiting misrepresentation of the origin of that material, or
829
+ requiring that modified versions of such material be marked in
830
+ reasonable ways as different from the original version; or
831
+
832
+ d) Limiting the use for publicity purposes of names of licensors or
833
+ authors of the material; or
834
+
835
+ e) Declining to grant rights under trademark law for use of some
836
+ trade names, trademarks, or service marks; or
837
+
838
+ f) Requiring indemnification of licensors and authors of that
839
+ material by anyone who conveys the material (or modified versions of
840
+ it) with contractual assumptions of liability to the recipient, for
841
+ any liability that these contractual assumptions directly impose on
842
+ those licensors and authors.
843
+
844
+ All other non-permissive additional terms are considered "further
845
+ restrictions" within the meaning of section 10. If the Program as you
846
+ received it, or any part of it, contains a notice stating that it is
847
+ governed by this License along with a term that is a further
848
+ restriction, you may remove that term. If a license document contains
849
+ a further restriction but permits relicensing or conveying under this
850
+ License, you may add to a covered work material governed by the terms
851
+ of that license document, provided that the further restriction does
852
+ not survive such relicensing or conveying.
853
+
854
+ If you add terms to a covered work in accord with this section, you
855
+ must place, in the relevant source files, a statement of the
856
+ additional terms that apply to those files, or a notice indicating
857
+ where to find the applicable terms.
858
+
859
+ Additional terms, permissive or non-permissive, may be stated in the
860
+ form of a separately written license, or stated as exceptions;
861
+ the above requirements apply either way.
862
+
863
+ 8. Termination.
864
+
865
+ You may not propagate or modify a covered work except as expressly
866
+ provided under this License. Any attempt otherwise to propagate or
867
+ modify it is void, and will automatically terminate your rights under
868
+ this License (including any patent licenses granted under the third
869
+ paragraph of section 11).
870
+
871
+ However, if you cease all violation of this License, then your
872
+ license from a particular copyright holder is reinstated (a)
873
+ provisionally, unless and until the copyright holder explicitly and
874
+ finally terminates your license, and (b) permanently, if the copyright
875
+ holder fails to notify you of the violation by some reasonable means
876
+ prior to 60 days after the cessation.
877
+
878
+ Moreover, your license from a particular copyright holder is
879
+ reinstated permanently if the copyright holder notifies you of the
880
+ violation by some reasonable means, this is the first time you have
881
+ received notice of violation of this License (for any work) from that
882
+ copyright holder, and you cure the violation prior to 30 days after
883
+ your receipt of the notice.
884
+
885
+ Termination of your rights under this section does not terminate the
886
+ licenses of parties who have received copies or rights from you under
887
+ this License. If your rights have been terminated and not permanently
888
+ reinstated, you do not qualify to receive new licenses for the same
889
+ material under section 10.
890
+
891
+ 9. Acceptance Not Required for Having Copies.
892
+
893
+ You are not required to accept this License in order to receive or
894
+ run a copy of the Program. Ancillary propagation of a covered work
895
+ occurring solely as a consequence of using peer-to-peer transmission
896
+ to receive a copy likewise does not require acceptance. However,
897
+ nothing other than this License grants you permission to propagate or
898
+ modify any covered work. These actions infringe copyright if you do
899
+ not accept this License. Therefore, by modifying or propagating a
900
+ covered work, you indicate your acceptance of this License to do so.
901
+
902
+ 10. Automatic Licensing of Downstream Recipients.
903
+
904
+ Each time you convey a covered work, the recipient automatically
905
+ receives a license from the original licensors, to run, modify and
906
+ propagate that work, subject to this License. You are not responsible
907
+ for enforcing compliance by third parties with this License.
908
+
909
+ An "entity transaction" is a transaction transferring control of an
910
+ organization, or substantially all assets of one, or subdividing an
911
+ organization, or merging organizations. If propagation of a covered
912
+ work results from an entity transaction, each party to that
913
+ transaction who receives a copy of the work also receives whatever
914
+ licenses to the work the party's predecessor in interest had or could
915
+ give under the previous paragraph, plus a right to possession of the
916
+ Corresponding Source of the work from the predecessor in interest, if
917
+ the predecessor has it or can get it with reasonable efforts.
918
+
919
+ You may not impose any further restrictions on the exercise of the
920
+ rights granted or affirmed under this License. For example, you may
921
+ not impose a license fee, royalty, or other charge for exercise of
922
+ rights granted under this License, and you may not initiate litigation
923
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
924
+ any patent claim is infringed by making, using, selling, offering for
925
+ sale, or importing the Program or any portion of it.
926
+
927
+ 11. Patents.
928
+
929
+ A "contributor" is a copyright holder who authorizes use under this
930
+ License of the Program or a work on which the Program is based. The
931
+ work thus licensed is called the contributor's "contributor version".
932
+
933
+ A contributor's "essential patent claims" are all patent claims
934
+ owned or controlled by the contributor, whether already acquired or
935
+ hereafter acquired, that would be infringed by some manner, permitted
936
+ by this License, of making, using, or selling its contributor version,
937
+ but do not include claims that would be infringed only as a
938
+ consequence of further modification of the contributor version. For
939
+ purposes of this definition, "control" includes the right to grant
940
+ patent sublicenses in a manner consistent with the requirements of
941
+ this License.
942
+
943
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
944
+ patent license under the contributor's essential patent claims, to
945
+ make, use, sell, offer for sale, import and otherwise run, modify and
946
+ propagate the contents of its contributor version.
947
+
948
+ In the following three paragraphs, a "patent license" is any express
949
+ agreement or commitment, however denominated, not to enforce a patent
950
+ (such as an express permission to practice a patent or covenant not to
951
+ sue for patent infringement). To "grant" such a patent license to a
952
+ party means to make such an agreement or commitment not to enforce a
953
+ patent against the party.
954
+
955
+ If you convey a covered work, knowingly relying on a patent license,
956
+ and the Corresponding Source of the work is not available for anyone
957
+ to copy, free of charge and under the terms of this License, through a
958
+ publicly available network server or other readily accessible means,
959
+ then you must either (1) cause the Corresponding Source to be so
960
+ available, or (2) arrange to deprive yourself of the benefit of the
961
+ patent license for this particular work, or (3) arrange, in a manner
962
+ consistent with the requirements of this License, to extend the patent
963
+ license to downstream recipients. "Knowingly relying" means you have
964
+ actual knowledge that, but for the patent license, your conveying the
965
+ covered work in a country, or your recipient's use of the covered work
966
+ in a country, would infringe one or more identifiable patents in that
967
+ country that you have reason to believe are valid.
968
+
969
+ If, pursuant to or in connection with a single transaction or
970
+ arrangement, you convey, or propagate by procuring conveyance of, a
971
+ covered work, and grant a patent license to some of the parties
972
+ receiving the covered work authorizing them to use, propagate, modify
973
+ or convey a specific copy of the covered work, then the patent license
974
+ you grant is automatically extended to all recipients of the covered
975
+ work and works based on it.
976
+
977
+ A patent license is "discriminatory" if it does not include within
978
+ the scope of its coverage, prohibits the exercise of, or is
979
+ conditioned on the non-exercise of one or more of the rights that are
980
+ specifically granted under this License. You may not convey a covered
981
+ work if you are a party to an arrangement with a third party that is
982
+ in the business of distributing software, under which you make payment
983
+ to the third party based on the extent of your activity of conveying
984
+ the work, and under which the third party grants, to any of the
985
+ parties who would receive the covered work from you, a discriminatory
986
+ patent license (a) in connection with copies of the covered work
987
+ conveyed by you (or copies made from those copies), or (b) primarily
988
+ for and in connection with specific products or compilations that
989
+ contain the covered work, unless you entered into that arrangement,
990
+ or that patent license was granted, prior to 28 March 2007.
991
+
992
+ Nothing in this License shall be construed as excluding or limiting
993
+ any implied license or other defenses to infringement that may
994
+ otherwise be available to you under applicable patent law.
995
+
996
+ 12. No Surrender of Others' Freedom.
997
+
998
+ If conditions are imposed on you (whether by court order, agreement or
999
+ otherwise) that contradict the conditions of this License, they do not
1000
+ excuse you from the conditions of this License. If you cannot convey a
1001
+ covered work so as to satisfy simultaneously your obligations under this
1002
+ License and any other pertinent obligations, then as a consequence you may
1003
+ not convey it at all. For example, if you agree to terms that obligate you
1004
+ to collect a royalty for further conveying from those to whom you convey
1005
+ the Program, the only way you could satisfy both those terms and this
1006
+ License would be to refrain entirely from conveying the Program.
1007
+
1008
+ 13. Remote Network Interaction; Use with the GNU General Public License.
1009
+
1010
+ Notwithstanding any other provision of this License, if you modify the
1011
+ Program, your modified version must prominently offer all users
1012
+ interacting with it remotely through a computer network (if your version
1013
+ supports such interaction) an opportunity to receive the Corresponding
1014
+ Source of your version by providing access to the Corresponding Source
1015
+ from a network server at no charge, through some standard or customary
1016
+ means of facilitating copying of software. This Corresponding Source
1017
+ shall include the Corresponding Source for any work covered by version 3
1018
+ of the GNU General Public License that is incorporated pursuant to the
1019
+ following paragraph.
1020
+
1021
+ Notwithstanding any other provision of this License, you have
1022
+ permission to link or combine any covered work with a work licensed
1023
+ under version 3 of the GNU General Public License into a single
1024
+ combined work, and to convey the resulting work. The terms of this
1025
+ License will continue to apply to the part which is the covered work,
1026
+ but the work with which it is combined will remain governed by version
1027
+ 3 of the GNU General Public License.
1028
+
1029
+ 14. Revised Versions of this License.
1030
+
1031
+ The Free Software Foundation may publish revised and/or new versions of
1032
+ the GNU Affero General Public License from time to time. Such new versions
1033
+ will be similar in spirit to the present version, but may differ in detail to
1034
+ address new problems or concerns.
1035
+
1036
+ Each version is given a distinguishing version number. If the
1037
+ Program specifies that a certain numbered version of the GNU Affero General
1038
+ Public License "or any later version" applies to it, you have the
1039
+ option of following the terms and conditions either of that numbered
1040
+ version or of any later version published by the Free Software
1041
+ Foundation. If the Program does not specify a version number of the
1042
+ GNU Affero General Public License, you may choose any version ever published
1043
+ by the Free Software Foundation.
1044
+
1045
+ If the Program specifies that a proxy can decide which future
1046
+ versions of the GNU Affero General Public License can be used, that proxy's
1047
+ public statement of acceptance of a version permanently authorizes you
1048
+ to choose that version for the Program.
1049
+
1050
+ Later license versions may give you additional or different
1051
+ permissions. However, no additional obligations are imposed on any
1052
+ author or copyright holder as a result of your choosing to follow a
1053
+ later version.
1054
+
1055
+ 15. Disclaimer of Warranty.
1056
+
1057
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
1058
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
1059
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
1060
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
1061
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1062
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
1063
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
1064
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1065
+
1066
+ 16. Limitation of Liability.
1067
+
1068
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
1069
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
1070
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
1071
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
1072
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
1073
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
1074
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
1075
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
1076
+ SUCH DAMAGES.
1077
+
1078
+ 17. Interpretation of Sections 15 and 16.
1079
+
1080
+ If the disclaimer of warranty and limitation of liability provided
1081
+ above cannot be given local legal effect according to their terms,
1082
+ reviewing courts shall apply local law that most closely approximates
1083
+ an absolute waiver of all civil liability in connection with the
1084
+ Program, unless a warranty or assumption of liability accompanies a
1085
+ copy of the Program in return for a fee.
1086
+
1087
+ END OF TERMS AND CONDITIONS
1088
+
1089
+ How to Apply These Terms to Your New Programs
1090
+
1091
+ If you develop a new program, and you want it to be of the greatest
1092
+ possible use to the public, the best way to achieve this is to make it
1093
+ free software which everyone can redistribute and change under these terms.
1094
+
1095
+ To do so, attach the following notices to the program. It is safest
1096
+ to attach them to the start of each source file to most effectively
1097
+ state the exclusion of warranty; and each file should have at least
1098
+ the "copyright" line and a pointer to where the full notice is found.
1099
+
1100
+ <one line to give the program's name and a brief idea of what it does.>
1101
+ Copyright (C) <year> <name of author>
1102
+
1103
+ This program is free software: you can redistribute it and/or modify
1104
+ it under the terms of the GNU Affero General Public License as published by
1105
+ the Free Software Foundation, either version 3 of the License, or
1106
+ (at your option) any later version.
1107
+
1108
+ This program is distributed in the hope that it will be useful,
1109
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1110
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1111
+ GNU Affero General Public License for more details.
1112
+
1113
+ You should have received a copy of the GNU Affero General Public License
1114
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
1115
+
1116
+ Also add information on how to contact you by electronic and paper mail.
1117
+
1118
+ If your software can interact with users remotely through a computer
1119
+ network, you should also make sure that it provides a way for users to
1120
+ get its source. For example, if your program is a web application, its
1121
+ interface could display a "Source" link that leads users to an archive
1122
+ of the code. There are many ways you could offer source, and different
1123
+ solutions will be better for different programs; see section 13 for the
1124
+ specific requirements.
1125
+
1126
+ You should also get your employer (if you work as a programmer) or school,
1127
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
1128
+ For more information on this, and how to apply and follow the GNU AGPL, see
1129
+ <https://www.gnu.org/licenses/>.
1130
+
1131
+
1132
+ --- packages/editor-threejs/LICENSE-APACHE ---
1133
+
1134
+
1135
+ Apache License
1136
+ Version 2.0, January 2004
1137
+ http://www.apache.org/licenses/
1138
+
1139
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1140
+
1141
+ 1. Definitions.
1142
+
1143
+ "License" shall mean the terms and conditions for use, reproduction,
1144
+ and distribution as defined by Sections 1 through 9 of this document.
1145
+
1146
+ "Licensor" shall mean the copyright owner or entity authorized by
1147
+ the copyright owner that is granting the License.
1148
+
1149
+ "Legal Entity" shall mean the union of the acting entity and all
1150
+ other entities that control, are controlled by, or are under common
1151
+ control with that entity. For the purposes of this definition,
1152
+ "control" means (i) the power, direct or indirect, to cause the
1153
+ direction or management of such entity, whether by contract or
1154
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1155
+ outstanding shares, or (iii) beneficial ownership of such entity.
1156
+
1157
+ "You" (or "Your") shall mean an individual or Legal Entity
1158
+ exercising permissions granted by this License.
1159
+
1160
+ "Source" form shall mean the preferred form for making modifications,
1161
+ including but not limited to software source code, documentation
1162
+ source, and configuration files.
1163
+
1164
+ "Object" form shall mean any form resulting from mechanical
1165
+ transformation or translation of a Source form, including but
1166
+ not limited to compiled object code, generated documentation,
1167
+ and conversions to other media types.
1168
+
1169
+ "Work" shall mean the work of authorship, whether in Source or
1170
+ Object form, made available under the License, as indicated by a
1171
+ copyright notice that is included in or attached to the work
1172
+ (an example is provided in the Appendix below).
1173
+
1174
+ "Derivative Works" shall mean any work, whether in Source or Object
1175
+ form, that is based on (or derived from) the Work and for which the
1176
+ editorial revisions, annotations, elaborations, or other modifications
1177
+ represent, as a whole, an original work of authorship. For the purposes
1178
+ of this License, Derivative Works shall not include works that remain
1179
+ separable from, or merely link (or bind by name) to the interfaces of,
1180
+ the Work and Derivative Works thereof.
1181
+
1182
+ "Contribution" shall mean any work of authorship, including
1183
+ the original version of the Work and any modifications or additions
1184
+ to that Work or Derivative Works thereof, that is intentionally
1185
+ submitted to Licensor for inclusion in the Work by the copyright owner
1186
+ or by an individual or Legal Entity authorized to submit on behalf of
1187
+ the copyright owner. For the purposes of this definition, "submitted"
1188
+ means any form of electronic, verbal, or written communication sent
1189
+ to the Licensor or its representatives, including but not limited to
1190
+ communication on electronic mailing lists, source code control systems,
1191
+ and issue tracking systems that are managed by, or on behalf of, the
1192
+ Licensor for the purpose of discussing and improving the Work, but
1193
+ excluding communication that is conspicuously marked or otherwise
1194
+ designated in writing by the copyright owner as "Not a Contribution."
1195
+
1196
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1197
+ on behalf of whom a Contribution has been received by Licensor and
1198
+ subsequently incorporated within the Work.
1199
+
1200
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1201
+ this License, each Contributor hereby grants to You a perpetual,
1202
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1203
+ copyright license to reproduce, prepare Derivative Works of,
1204
+ publicly display, publicly perform, sublicense, and distribute the
1205
+ Work and such Derivative Works in Source or Object form.
1206
+
1207
+ 3. Grant of Patent License. Subject to the terms and conditions of
1208
+ this License, each Contributor hereby grants to You a perpetual,
1209
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1210
+ (except as stated in this section) patent license to make, have made,
1211
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1212
+ where such license applies only to those patent claims licensable
1213
+ by such Contributor that are necessarily infringed by their
1214
+ Contribution(s) alone or by combination of their Contribution(s)
1215
+ with the Work to which such Contribution(s) was submitted. If You
1216
+ institute patent litigation against any entity (including a
1217
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1218
+ or a Contribution incorporated within the Work constitutes direct
1219
+ or contributory patent infringement, then any patent licenses
1220
+ granted to You under this License for that Work shall terminate
1221
+ as of the date such litigation is filed.
1222
+
1223
+ 4. Redistribution. You may reproduce and distribute copies of the
1224
+ Work or Derivative Works thereof in any medium, with or without
1225
+ modifications, and in Source or Object form, provided that You
1226
+ meet the following conditions:
1227
+
1228
+ (a) You must give any other recipients of the Work or
1229
+ Derivative Works a copy of this License; and
1230
+
1231
+ (b) You must cause any modified files to carry prominent notices
1232
+ stating that You changed the files; and
1233
+
1234
+ (c) You must retain, in the Source form of any Derivative Works
1235
+ that You distribute, all copyright, patent, trademark, and
1236
+ attribution notices from the Source form of the Work,
1237
+ excluding those notices that do not pertain to any part of
1238
+ the Derivative Works; and
1239
+
1240
+ (d) If the Work includes a "NOTICE" text file as part of its
1241
+ distribution, then any Derivative Works that You distribute must
1242
+ include a readable copy of the attribution notices contained
1243
+ within such NOTICE file, excluding those notices that do not
1244
+ pertain to any part of the Derivative Works, in at least one
1245
+ of the following places: within a NOTICE text file distributed
1246
+ as part of the Derivative Works; within the Source form or
1247
+ documentation, if provided along with the Derivative Works; or,
1248
+ within a display generated by the Derivative Works, if and
1249
+ wherever such third-party notices normally appear. The contents
1250
+ of the NOTICE file are for informational purposes only and
1251
+ do not modify the License. You may add Your own attribution
1252
+ notices within Derivative Works that You distribute, alongside
1253
+ or as an addendum to the NOTICE text from the Work, provided
1254
+ that such additional attribution notices cannot be construed
1255
+ as modifying the License.
1256
+
1257
+ You may add Your own copyright statement to Your modifications and
1258
+ may provide additional or different license terms and conditions
1259
+ for use, reproduction, or distribution of Your modifications, or
1260
+ for any such Derivative Works as a whole, provided Your use,
1261
+ reproduction, and distribution of the Work otherwise complies with
1262
+ the conditions stated in this License.
1263
+
1264
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1265
+ any Contribution intentionally submitted for inclusion in the Work
1266
+ by You to the Licensor shall be under the terms and conditions of
1267
+ this License, without any additional terms or conditions.
1268
+ Notwithstanding the above, nothing herein shall supersede or modify
1269
+ the terms of any separate license agreement you may have executed
1270
+ with Licensor regarding such Contributions.
1271
+
1272
+ 6. Trademarks. This License does not grant permission to use the trade
1273
+ names, trademarks, service marks, or product names of the Licensor,
1274
+ except as required for reasonable and customary use in describing the
1275
+ origin of the Work and reproducing the content of the NOTICE file.
1276
+
1277
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1278
+ agreed to in writing, Licensor provides the Work (and each
1279
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1280
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1281
+ implied, including, without limitation, any warranties or conditions
1282
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1283
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1284
+ appropriateness of using or redistributing the Work and assume any
1285
+ risks associated with Your exercise of permissions under this License.
1286
+
1287
+ 8. Limitation of Liability. In no event and under no legal theory,
1288
+ whether in tort (including negligence), contract, or otherwise,
1289
+ unless required by applicable law (such as deliberate and grossly
1290
+ negligent acts) or agreed to in writing, shall any Contributor be
1291
+ liable to You for damages, including any direct, indirect, special,
1292
+ incidental, or consequential damages of any character arising as a
1293
+ result of this License or out of the use or inability to use the
1294
+ Work (including but not limited to damages for loss of goodwill,
1295
+ work stoppage, computer failure or malfunction, or any and all
1296
+ other commercial damages or losses), even if such Contributor
1297
+ has been advised of the possibility of such damages.
1298
+
1299
+ 9. Accepting Warranty or Additional Liability. While redistributing
1300
+ the Work or Derivative Works thereof, You may choose to offer,
1301
+ and charge a fee for, acceptance of support, warranty, indemnity,
1302
+ or other liability obligations and/or rights consistent with this
1303
+ License. However, in accepting such obligations, You may act only
1304
+ on Your own behalf and on Your sole responsibility, not on behalf
1305
+ of any other Contributor, and only if You agree to indemnify,
1306
+ defend, and hold each Contributor harmless for any liability
1307
+ incurred by, or claims asserted against, such Contributor by reason
1308
+ of your accepting any such warranty or additional liability.
1309
+
1310
+ END OF TERMS AND CONDITIONS
1311
+
1312
+ APPENDIX: How to apply the Apache License to your work.
1313
+
1314
+ To apply the Apache License to your work, attach the following
1315
+ boilerplate notice, with the fields enclosed by brackets "[]"
1316
+ replaced with your own identifying information. (Don't include
1317
+ the brackets!) The text should be enclosed in the appropriate
1318
+ comment syntax for the file format. We also recommend that a
1319
+ file or class name and description of purpose be included on the
1320
+ same "printed page" as the copyright notice for easier
1321
+ identification within third-party archives.
1322
+
1323
+ Copyright 2026 Volter AI, Inc.
1324
+
1325
+ Licensed under the Apache License, Version 2.0 (the "License");
1326
+ you may not use this file except in compliance with the License.
1327
+ You may obtain a copy of the License at
1328
+
1329
+ http://www.apache.org/licenses/LICENSE-2.0
1330
+
1331
+ Unless required by applicable law or agreed to in writing, software
1332
+ distributed under the License is distributed on an "AS IS" BASIS,
1333
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1334
+ See the License for the specific language governing permissions and
1335
+ limitations under the License.
1336
+
1337
+
1338
+ --- packages/editor-threejs/NOTICE ---
1339
+
1340
+ Copyright 2026 Volter AI, Inc.
1341
+
1342
+ Modules under src/viewport and src/capture were imported from the
1343
+ AGPL-3.0-only @vgai/threejs package; LICENSE contains that license.
1344
+
1345
+ Modules under src/adapter, src/animation, src/ecs and src/render, together
1346
+ with src/asset-loaders.ts, src/asset-parse-error.ts and src/loader.ts, were
1347
+ imported from the Apache-2.0 @vgai/threejs-runtime package. They retain that
1348
+ license; LICENSE-APACHE contains its text.
1349
+
1350
+ Source revisions and original file hashes are recorded in the repository's
1351
+ provenance/blender-integration.json and provenance/editor-host.json.
1352
+
1353
+
1354
+ fdir@6.5.0
1355
+ Declared license: MIT
1356
+
1357
+ --- node_modules/fdir/LICENSE ---
1358
+
1359
+ Copyright 2023 Abdullah Atta
1360
+
1361
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1362
+
1363
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1364
+
1365
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1366
+
1367
+
1368
+ fflate@0.8.3
1369
+ Declared license: MIT
1370
+
1371
+ --- node_modules/fflate/LICENSE ---
1372
+
1373
+ MIT License
1374
+
1375
+ Copyright (c) 2026 Arjun Barrett
1376
+
1377
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1378
+ of this software and associated documentation files (the "Software"), to deal
1379
+ in the Software without restriction, including without limitation the rights
1380
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1381
+ copies of the Software, and to permit persons to whom the Software is
1382
+ furnished to do so, subject to the following conditions:
1383
+
1384
+ The above copyright notice and this permission notice shall be included in all
1385
+ copies or substantial portions of the Software.
1386
+
1387
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1388
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1389
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1390
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1391
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1392
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1393
+ SOFTWARE.
1394
+
1395
+ picomatch@4.0.7
1396
+ Declared license: MIT
1397
+
1398
+ --- node_modules/picomatch/LICENSE ---
1399
+
1400
+ The MIT License (MIT)
1401
+
1402
+ Copyright (c) 2017-present, Jon Schlinkert.
1403
+
1404
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1405
+ of this software and associated documentation files (the "Software"), to deal
1406
+ in the Software without restriction, including without limitation the rights
1407
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1408
+ copies of the Software, and to permit persons to whom the Software is
1409
+ furnished to do so, subject to the following conditions:
1410
+
1411
+ The above copyright notice and this permission notice shall be included in
1412
+ all copies or substantial portions of the Software.
1413
+
1414
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1415
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1416
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1417
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1418
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1419
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1420
+ THE SOFTWARE.
1421
+
1422
+
1423
+ react@19.2.7
1424
+ Declared license: MIT
1425
+
1426
+ --- node_modules/react/LICENSE ---
1427
+
1428
+ MIT License
1429
+
1430
+ Copyright (c) Meta Platforms, Inc. and affiliates.
1431
+
1432
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1433
+ of this software and associated documentation files (the "Software"), to deal
1434
+ in the Software without restriction, including without limitation the rights
1435
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1436
+ copies of the Software, and to permit persons to whom the Software is
1437
+ furnished to do so, subject to the following conditions:
1438
+
1439
+ The above copyright notice and this permission notice shall be included in all
1440
+ copies or substantial portions of the Software.
1441
+
1442
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1443
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1444
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1445
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1446
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1447
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1448
+ SOFTWARE.
1449
+
1450
+
1451
+ semver@7.8.5
1452
+ Declared license: ISC
1453
+
1454
+ --- node_modules/semver/LICENSE ---
1455
+
1456
+ The ISC License
1457
+
1458
+ Copyright (c) Isaac Z. Schlueter and Contributors
1459
+
1460
+ Permission to use, copy, modify, and/or distribute this software for any
1461
+ purpose with or without fee is hereby granted, provided that the above
1462
+ copyright notice and this permission notice appear in all copies.
1463
+
1464
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1465
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1466
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1467
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1468
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1469
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1470
+ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1471
+
1472
+
1473
+ three@0.180.0
1474
+ Declared license: MIT
1475
+
1476
+ --- node_modules/three/LICENSE ---
1477
+
1478
+ The MIT License
1479
+
1480
+ Copyright © 2010-2025 three.js authors
1481
+
1482
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1483
+ of this software and associated documentation files (the "Software"), to deal
1484
+ in the Software without restriction, including without limitation the rights
1485
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1486
+ copies of the Software, and to permit persons to whom the Software is
1487
+ furnished to do so, subject to the following conditions:
1488
+
1489
+ The above copyright notice and this permission notice shall be included in
1490
+ all copies or substantial portions of the Software.
1491
+
1492
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1493
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1494
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1495
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1496
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1497
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1498
+ THE SOFTWARE.
1499
+
1500
+
1501
+ tinyglobby@0.2.17
1502
+ Declared license: MIT
1503
+
1504
+ --- node_modules/tinyglobby/LICENSE ---
1505
+
1506
+ MIT License
1507
+
1508
+ Copyright (c) 2024 Madeline Gurriarán
1509
+
1510
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1511
+ of this software and associated documentation files (the "Software"), to deal
1512
+ in the Software without restriction, including without limitation the rights
1513
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1514
+ copies of the Software, and to permit persons to whom the Software is
1515
+ furnished to do so, subject to the following conditions:
1516
+
1517
+ The above copyright notice and this permission notice shall be included in all
1518
+ copies or substantial portions of the Software.
1519
+
1520
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1521
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1522
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1523
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1524
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1525
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1526
+ SOFTWARE.
1527
+