-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "webgl-globe",
"version": "1.0.0",
"description": "Interactive 3D Earth visualization with WebGL and Three.js, featuring bezier curves, particle effects, and performance monitoring",
"main": "app.js",
"type": "module",
"engines": {
"node": ">=18.17.1"
},
"dependencies": {
"express": "^4.21.1",
"jquery": "^3.7.1",
"materialize-css": "^1.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint wwwroot --ext .js",
"lint:fix": "npm run lint -- --fix",
"start": "node app.js",
"dev": "live-server wwwroot --port=3000 --host=localhost",
"build": "echo \"Static build complete - files are ready in wwwroot directory\"",
"deploy": "echo \"Deploy wwwroot directory to your hosting platform\"",
"serve": "npm run dev",
"preview": "npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galactic-plane/webgl-globe.git"
},
"keywords": [
"webgl",
"three.js",
"3d",
"earth",
"visualization",
"particle-effects",
"bezier-curves",
"interactive",
"globe"
],
"author": "Daniel Penrod",
"license": "MIT",
"files": [
"wwwroot/",
"app.js",
"README.md"
],
"bugs": {
"url": "https://github.com/galactic-plane/webgl-globe/issues"
},
"homepage": "https://galactic-plane.github.io/webgl-globe/wwwroot/index.html",
"devDependencies": {
"@eslint/js": "^9.31.0",
"eslint": "^9.14.0",
"live-server": "^1.2.2"
}
}