@4dgs/core 0.0.1
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 +15 -0
- package/README.md +8 -0
- package/index.js +3 -0
- package/package.json +20 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Apache License, Version 2.0
|
|
2
|
+
|
|
3
|
+
Copyright 2026 Avala AI
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# @4dgs/core
|
|
2
|
+
|
|
3
|
+
**This package name is reserved for the official SDK of the [4dgs container format](https://github.com/avala-ai/4dgs) — an open, Apache-2.0 licensed, single-file, streamable container for 4D Gaussian Splat video.**
|
|
4
|
+
|
|
5
|
+
This is a pre-release placeholder published by the format's maintainers; the real SDK will be released from the repository above. Do not depend on this version.
|
|
6
|
+
|
|
7
|
+
- Spec and conformance suite: https://github.com/avala-ai/4dgs
|
|
8
|
+
- License: Apache-2.0
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@4dgs/core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "An open container format for 4D Gaussian Splat video - single-file, streamable, seekable, error-bounded, with native audio. Placeholder pre-release; real SDK forthcoming.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/avala-ai/4dgs.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/avala-ai/4dgs",
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
}
|
|
20
|
+
}
|