-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "moon-phases-3d",
"version": "1.0.0",
"description": "3D Moon Phase Tracker with Animation",
"type": "module",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/NeaByteLab/MoonPhases.git"
},
"keywords": [
"moon",
"phases",
"3d",
"astronomy",
"threejs",
"lunar",
"calendar"
],
"author": "NeaByteLab",
"license": "MIT",
"bugs": {
"url": "https://github.com/NeaByteLab/MoonPhases/issues"
},
"homepage": "https://neabytelab.github.io/MoonPhases/",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"dat.gui": "^0.7.9",
"three": "^0.180.0"
},
"devDependencies": {
"@types/three": "^0.180.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"typescript": "^5.9.3",
"vite": "^7.1.12"
}
}