-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 KB
/
package.json
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
{
"name": "celestiary",
"homepage": "https://github.com/celestiary/web#readme",
"description": "Astronomical simulator web app.",
"author": "Pablo Mayrgundter",
"license": "ISC",
"version": "0.0.334",
"repository": {
"type": "git",
"url": "git+https://github.com/celestiary/web.git"
},
"bugs": {
"url": "https://github.com/celestiary/web/issues"
},
"scripts": {
"build": "yarn clean && cp -r public/* js/shaders docs/ && node esbuild/build.js",
"clean": "rm -rf docs ; cp -r public docs",
"lint": "yarn eslint js",
"serve": "yarn build && node esbuild/serve.js",
"test": "bun test",
"update-version": "./tools/updateVersion.mjs"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "5.16.13",
"@mui/material": "5.16.13",
"@pablo-mayrgundter/fullscreen.js": "1.1.0",
"@pablo-mayrgundter/measure.js": "2.0.1",
"@pablo-mayrgundter/parser.js": "1.0.1",
"@pablo-mayrgundter/yaot2": "2.0.1",
"@react-three/drei": "9.120.4",
"@react-three/fiber": "8.17.10",
"@types/three": "0.171.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"three": "0.171.0",
"tweakpane": "4.0.3",
"vsop87": "1.0.5",
"wouter": "3.0.0",
"zustand": "4.5.1"
},
"devDependencies": {
"@tsconfig/recommended": "1.0.8",
"@types/node": "22.10.2",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.1",
"esbuild": "0.24.2",
"eslint": "9.17.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0"
},
"keywords": [
"astronomy",
"astrology",
"planetarium",
"orary",
"gis",
"space",
"webgl",
"threejs",
"javascript"
]
}