-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "belowjs",
"version": "1.7.3",
"description": "A modular Three.js library for creating immersive underwater/dive model viewers with VR support",
"main": "dist/belowjs.js",
"module": "dist/belowjs.js",
"style": "dist/belowjs.css",
"type": "module",
"scripts": {
"dev": "vite serve --open examples/basic/",
"dev:basic": "vite serve --open examples/basic/",
"dev:dragdrop": "vite serve --open examples/dragdrop/",
"dev:embed": "vite serve --open examples/embed/",
"dev:animation": "vite serve --open examples/animation/",
"dev:tileset": "vite serve --open examples/tileset/",
"build": "vite build",
"preview": "vite preview",
"docs:serve": "python -m http.server 8000 --directory docs",
"docs:examples": "node docs/copy-examples.js",
"prepublishOnly": "npm run build && npm run lint",
"test": "echo 'Integration tests available via examples' && exit 0",
"lint": "eslint src/ vite.config.js",
"lint:fix": "eslint src/ vite.config.js --fix"
},
"keywords": [
"threejs",
"webxr",
"vr",
"3d",
"underwater",
"model-viewer",
"webgl"
],
"author": "Patrick Morrison",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/patrick-morrison/belowjs.git"
},
"bugs": {
"url": "https://github.com/patrick-morrison/belowjs/issues"
},
"homepage": "https://github.com/patrick-morrison/belowjs#readme",
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"3d-tiles-renderer": "^0.4.20",
"three": "0.179.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"typedoc": "^0.28.10",
"typedoc-plugin-markdown": "^4.8.0",
"typescript": "^5.9.2",
"vite": "7.1.1",
"vitepress": "^1.6.4"
}
}