belowjs 1.0.0-rc.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/CHANGELOG.md +22 -0
- package/LICENSE +689 -0
- package/README.md +218 -0
- package/dist/belowjs.css +1 -0
- package/dist/belowjs.js +8428 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "belowjs",
|
|
3
|
+
"version": "1.0.0-rc.1",
|
|
4
|
+
"description": "A modular Three.js library for creating immersive underwater/dive model viewers with VR support",
|
|
5
|
+
"main": "dist/belowjs.js",
|
|
6
|
+
"module": "dist/belowjs.js",
|
|
7
|
+
"style": "dist/belowjs.css",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "vite serve --open examples/basic/",
|
|
11
|
+
"dev:basic": "vite serve --open examples/basic/",
|
|
12
|
+
"dev:dragdrop": "vite serve --open examples/dragdrop/",
|
|
13
|
+
"dev:embed": "vite serve --open examples/embed/",
|
|
14
|
+
"build": "vite build",
|
|
15
|
+
"preview": "vite preview",
|
|
16
|
+
"prepublishOnly": "npm run build && npm run lint",
|
|
17
|
+
"test": "echo 'Integration tests available via examples' && exit 0",
|
|
18
|
+
"lint": "eslint src/ vite.config.js",
|
|
19
|
+
"lint:fix": "eslint src/ vite.config.js --fix"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"threejs",
|
|
23
|
+
"webxr",
|
|
24
|
+
"vr",
|
|
25
|
+
"3d",
|
|
26
|
+
"underwater",
|
|
27
|
+
"model-viewer",
|
|
28
|
+
"webgl"
|
|
29
|
+
],
|
|
30
|
+
"author": "Patrick Morrison",
|
|
31
|
+
"license": "GPL-3.0-or-later",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/patrick-morrison/belowjs.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/patrick-morrison/belowjs/issues"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/patrick-morrison/belowjs#readme",
|
|
40
|
+
"files": [
|
|
41
|
+
"dist/",
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE",
|
|
44
|
+
"CHANGELOG.md"
|
|
45
|
+
],
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=16.0.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"three": "0.179.1"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@eslint/js": "^9.33.0",
|
|
57
|
+
"eslint": "^9.33.0",
|
|
58
|
+
"vite": "7.1.1"
|
|
59
|
+
}
|
|
60
|
+
}
|