-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 992 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 992 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
{
"name": "trajectra-3d",
"version": "1.0.0",
"description": "A 3D pathfinding visualization tool inspired by Micromouse robotics competitions. Demonstrates various maze generation and pathfinding algorithms in an interactive 3D environment using Three.js.",
"main": "index.js",
"scripts": {
"deploy": "gh-pages -d dist",
"dev": "live-server",
"build": "echo 'Build process would go here'"
},
"keywords": [
"pathfinding",
"maze-generation",
"3d-visualization",
"threejs",
"algorithms",
"micromouse",
"robotics",
"a-star",
"dijkstra",
"depth-first-search"
],
"author": "Anmol Mahobiya",
"license": "MIT",
"homepage": "https://anmol-09.github.io/Trajectra-3D",
"repository": {
"type": "git",
"url": "https://github.com/AnmoL-09/Trajectra-3D.git"
},
"dependencies": {
"gh-pages": "^3.1.0",
"three": "^0.127.0",
"three-sky": "^1.1.3"
},
"devDependencies": {
"live-server": "^1.2.1"
}
}