-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "3dgs-loader",
"version": "1.3.0",
"main": "dist/index.js",
"repository": "https://github.com/dvt3d/gs-loader.git",
"author": "Caven Chen <cavencj@gmail.com>",
"description": "A unified, extensible loader framework for efficient loading and processing of 3D Gaussian Splatting (3DGS) data.",
"keywords": [
"3dgs-loader",
"Gaussian loader",
"Gaussian splatting",
"3dgs",
"gs",
"spz",
"sog",
"splat",
"ply",
"k-spalt"
],
"license": "Apache-2.0",
"scripts": {
"dev": "rimraf dist && gulp dev",
"build": "rimraf dist && gulp build",
"build:node": "rimraf dist && gulp buildNode",
"build:iife": "rimraf dist && gulp buildIIFE",
"build:release": "rimraf dist && gulp buildRelease",
"prepublishOnly": "yarn run build:release",
"lint": "eslint --fix src"
},
"files": [
"dist"
],
"devDependencies": {
"chalk": "^5.6.2",
"esbuild": "^0.27.2",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.3",
"gulp": "^5.0.1",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"shelljs": "^0.10.0"
},
"dependencies": {
"fflate": "^0.8.2"
}
}