@miris-inc/core 0.0.8-655ef21 → 0.0.8-82cf7f1
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/LICENSE +201 -0
- package/README.md +82 -0
- package/banner.svg +34 -0
- package/dist/AquaApi.js +15 -0
- package/dist/AquaApi.wasm +0 -0
- package/dist/aqua-parser.js +14 -0
- package/dist/aqua-parser.wasm +0 -0
- package/dist/core.d.ts +597 -0
- package/dist/core.js +2180 -0
- package/dist/core.prod.js +1 -0
- package/dist/core.standalone.js +5116 -0
- package/{core.js → dist/core.standalone.prod.js} +1 -6318
- package/package.json +49 -7
- package/icon-black.svg +0 -10
- package/icon-white.svg +0 -11
- package/social-card.png +0 -3
package/package.json
CHANGED
|
@@ -1,16 +1,58 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miris-inc/core",
|
|
3
|
+
"version": "0.0.8-82cf7f1",
|
|
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
|
-
"
|
|
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
|
+
"types": "./dist/core.d.ts",
|
|
41
|
+
"development": "./dist/core.js",
|
|
42
|
+
"import": "./dist/core.prod.js",
|
|
43
|
+
"default": "./dist/core.prod.js"
|
|
44
|
+
},
|
|
45
|
+
"./standalone": {
|
|
46
|
+
"types": "./dist/core.d.ts",
|
|
47
|
+
"development": "./dist/core.standalone.js",
|
|
48
|
+
"import": "./dist/core.standalone.prod.js",
|
|
49
|
+
"default": "./dist/core.standalone.prod.js"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
5
52
|
"scripts": {
|
|
6
53
|
"d": "bun dev",
|
|
7
54
|
"dev": "vite",
|
|
8
55
|
"b": "cd ../.. && vite build --mode packages/core",
|
|
9
56
|
"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-655ef21"
|
|
57
|
+
}
|
|
16
58
|
}
|
package/icon-black.svg
DELETED
package/icon-white.svg
DELETED
package/social-card.png
DELETED