-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "quadsphere",
"version": "1.2.2",
"description": "a quadsphere implementation in javascript using THREE.js supporting distance based level of detail adjustment",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "vite --port 8081",
"build": "tsc && vite build",
"build:dev": "NODE_ENV=development npm run build",
"build:lib": "tsc && vite build -c vite.lib.config.ts",
"preview": "NODE_ENV=development vite preview --port 4500",
"test": "vitest run",
"preparedist": "cp ./package.json ./dist && cp ./README.md ./dist",
"pkg": "npm run build:lib && npm run preparedist && npm pack ./dist",
"pub": "npm run build:lib && npm run preparedist && npm publish ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bicarbon8/QuadSphere.git"
},
"keywords": [
"quadsphere",
"threejs",
"planet",
"space"
],
"author": "Jason Holt Smith <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bicarbon8/QuadSphere/issues"
},
"homepage": "https://github.com/bicarbon8/QuadSphere#readme",
"dependencies": {
"@react-three/drei": "^9.56.24",
"@react-three/fiber": "^8.11.0",
"leva": "^0.9.34",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.149.0"
},
"devDependencies": {
"@originjs/vite-plugin-federation": "^1.2.1",
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/three": "^0.149.0",
"@vitejs/plugin-react": "^3.1.0",
"copyfiles": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.0.2",
"vitest": "^0.28.5"
}
}