@miris-inc/core 0.0.8-b1f8bb4 → 0.0.8-bcfa9ee

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,16 +1,59 @@
1
1
  {
2
2
  "name": "@miris-inc/core",
3
+ "version": "0.0.8-bcfa9ee",
4
+ "description": "Core scene-graph runtime for the Miris 3D streaming SDK. WASM-backed Engine, Client, Scene, Stream, and LOD primitives shared by all higher-level packages.",
3
5
  "license": "Apache-2.0",
4
- "exports": "./core.js",
6
+ "homepage": "https://miris.com",
7
+ "author": "Miris, Inc.",
8
+ "engines": {
9
+ "node": ">=18"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "keywords": [
15
+ "miris",
16
+ "3d",
17
+ "gaussian-splatting",
18
+ "3dgs",
19
+ "4dgs",
20
+ "splats",
21
+ "streaming",
22
+ "wasm"
23
+ ],
24
+ "type": "module",
25
+ "sideEffects": false,
26
+ "files": [
27
+ "banner.svg",
28
+ "dist/*.js",
29
+ "dist/*.d.ts",
30
+ "dist/*.wasm",
31
+ "!dist/*.map"
32
+ ],
33
+ "types": "./dist/core.d.ts",
34
+ "main": "./dist/core.prod.js",
35
+ "module": "./dist/core.prod.js",
36
+ "unpkg": "./dist/core.standalone.prod.js",
37
+ "jsdelivr": "./dist/core.standalone.prod.js",
38
+ "exports": {
39
+ ".": {
40
+ "source": "./index.ts",
41
+ "types": "./dist/core.d.ts",
42
+ "development": "./dist/core.js",
43
+ "import": "./dist/core.prod.js",
44
+ "default": "./dist/core.prod.js"
45
+ },
46
+ "./standalone": {
47
+ "types": "./dist/core.d.ts",
48
+ "development": "./dist/core.standalone.js",
49
+ "import": "./dist/core.standalone.prod.js",
50
+ "default": "./dist/core.standalone.prod.js"
51
+ }
52
+ },
5
53
  "scripts": {
6
54
  "d": "bun dev",
7
55
  "dev": "vite",
8
56
  "b": "cd ../.. && vite build --mode packages/core",
9
57
  "build": "cd ../.. && vite build --mode packages/core"
10
- },
11
- "devDependencies": {
12
- "@types/emscripten": "^1.41.5",
13
- "core-js": "^3.47.0"
14
- },
15
- "version": "0.0.8-b1f8bb4"
58
+ }
16
59
  }