-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "insect-world",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "昆虫世界 — 像博物学家一样认识昆虫。可交互 3D 昆虫图鉴。",
"license": "MIT",
"author": "xr843",
"repository": {
"type": "git",
"url": "git+https://github.com/xr843/insect-world.git"
},
"keywords": [
"three.js",
"react-three-fiber",
"procedural-geometry",
"insects",
"entomology",
"3d",
"field-guide"
],
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"postbuild": "node scripts/make-species-pages.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"deploy": "npm test && npm run build && npx wrangler pages deploy dist --project-name=insect-world --branch=master --commit-dirty=true"
},
"dependencies": {
"@react-three/drei": "^9.117.3",
"@react-three/fiber": "^8.17.10",
"@react-three/postprocessing": "^2.19.1",
"n8ao": "^1.10.3",
"postprocessing": "^6.39.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.171.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.3",
"@types/node": "^26.2.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.171.0",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^3.2.7"
},
"homepage": "https://insect-world.pages.dev"
}