-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
69
70
71
72
73
74
75
76
{
"name": "celestialengine",
"version": "0.3.2",
"description": "Render a planetarium at your React website, based on threejs and react-three-fiber.",
"keywords": [
"planetarium",
"astronomy",
"celestial",
"celestian"
],
"author": "Karno (https://github.com/karno)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/karno/celestialengine.git"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"get-star-db": "dist-scripts/download.sh"
},
"files": [
"dist",
"dist-scripts"
],
"type": "module",
"scripts": {
"test": "tsc --noEmit && jest",
"ts-types": "tsc --emitDeclarationOnly --outDir dist",
"star-db": "scripts/build.sh",
"build": "rimraf dist && node ./esbuild.mjs && npm run ts-types",
"full-build": "build && star-db"
},
"dependencies": {
"@testing-library/react": "^13.3.0",
"astronomy-bundle": ">=7.5.4",
"troika-three-text": ">=0.46.4"
},
"devDependencies": {
"@react-three/fiber": "^8.0.19",
"@react-three/postprocessing": "^2.3.2",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"esbuild": "^0.14.41",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-matcher-deep-close-to": "^3.0.2",
"license-checker": "^25.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"three": "^0.139.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"@react-three/fiber": ">=8.0",
"@react-three/postprocessing": ">=2.3.2",
"react": ">=18.1",
"react-dom": ">=18.1",
"three": ">=0.139.0"
}
}