-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.92 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.92 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
70
71
72
73
74
75
76
77
78
{
"name": "planetary",
"version": "1.0.0",
"description": "Professional-grade 3D solar system visualization with accurate astronomical data and N-body physics simulation. Built with Three.js and modern web technologies for interactive space exploration and education.",
"type": "module",
"main": "src/main.js",
"homepage": "https://github.com/your-username/planetary#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/planetary.git"
},
"bugs": {
"url": "https://github.com/your-username/planetary/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:runner": "node test-runner.js",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"check": "node test-runner.js --all"
},
"keywords": [
"3d",
"solar-system",
"astronomy",
"three.js",
"webgl",
"n-body",
"physics",
"simulation",
"visualization",
"education",
"space",
"planets",
"orbital-mechanics",
"javascript",
"webgl2",
"science",
"interactive",
"real-time"
],
"author": {
"name": "Solar System Visualization Team",
"email": "contact@planetary-project.org",
"url": "https://github.com/your-username/planetary"
},
"contributors": [
{
"name": "Claude Code",
"url": "https://claude.ai/code"
}
],
"license": "MIT",
"dependencies": {
"lil-gui": "^0.18.2",
"mathjs": "^12.2.1",
"ml-matrix": "^6.10.7",
"three": "^0.161.0"
},
"devDependencies": {
"@vitest/ui": "^1.3.1",
"eslint": "^8.57.0",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"engines": {
"node": ">=18.0.0"
}
}