-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.16 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
47
48
49
50
51
52
53
54
{
"name": "meshvault",
"version": "0.8.0",
"description": "A professional 3D asset browser for rapid browsing, previewing, and managing OBJ/FBX files",
"keywords": [
"3d",
"asset-browser",
"obj",
"fbx",
"three.js",
"viewer",
"meshvault",
"3d-viewer",
"mesh"
],
"homepage": "https://github.com/lpalbou/meshvault",
"bugs": {
"url": "https://github.com/lpalbou/meshvault/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpalbou/meshvault.git"
},
"license": "MIT",
"author": "Laurent-Philippe Albou <contact@abstractcore.ai>",
"bin": {
"meshvault": "./bin/meshvault.js"
},
"files": [
"bin/",
"backend/*.py",
"frontend/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.mjs",
"watch": "node scripts/build.mjs --watch",
"start": "node bin/meshvault.js",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"playwright": "^1.58.2",
"three-bvh-csg": "^0.0.17",
"three-mesh-bvh": "^0.7.8"
},
"devDependencies": {
"esbuild": "^0.24.2",
"three": "^0.170.0"
}
}