-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1005 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1005 Bytes
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
{
"name": "@dvt3d/splat-mesh",
"version": "1.1.1",
"main": "dist/index.js",
"repository": "https://github.com/dvt3d/splat-mesh.git",
"author": "Caven Chen <cavencj@gmail.com>",
"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"
},
"peerDependencies": {
"three": "^0.182.0"
},
"keywords": [
"Gaussian splatting",
"3dgs",
"three.js",
"splat-mesh"
],
"files": [
"dist"
],
"devDependencies": {
"chalk": "^5.6.2",
"esbuild": "^0.27.2",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-plugin-glsl": "^1.4.1",
"fs-extra": "^11.3.3",
"gulp": "^5.0.1",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"shelljs": "^0.10.0"
}
}