-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "hyperfy",
"version": "0.4.0",
"type": "module",
"main": "index.js",
"homepage": "https://github.com/hyperfy-xyz/hyperfy#readme",
"bugs": {
"url": "https://github.com/hyperfy-xyz/hyperfy/issues"
},
"keywords": [
"hyperfy",
"3d",
"components",
"virtual-worlds",
"metaverse",
"three.js",
"webgl",
"real-time"
],
"scripts": {
"dev": "node build.mjs --dev",
"build": "node build.mjs",
"start": "node build/index.js",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"format": "prettier --write .",
"check": "npm run lint && npm run format",
"world:clean": "node world-clean.mjs"
},
"dependencies": {
"@fastify/compress": "^8.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/static": "^8.0.1",
"@fastify/websocket": "^11.0.1",
"@firebolt-dev/css": "^0.4.3",
"@firebolt-dev/jsx": "^0.4.3",
"@pixiv/three-vrm": "^3.3.3",
"better-sqlite3": "^11.7.2",
"dotenv-flow": "^4.1.0",
"eventemitter3": "^5.0.1",
"fastify": "^5.0.0",
"find-cache-dir": "^5.0.0",
"fs-extra": "^11.2.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.469.0",
"moment": "^2.30.1",
"msgpackr": "^1.11.0",
"nanoid": "^5.0.6",
"postprocessing": "^6.36.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ses": "^1.10.0",
"source-map-support": "^0.5.21",
"three": "^0.170.0",
"three-mesh-bvh": "^0.8.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-react": "^7.23.10",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.4.2"
},
"engines": {
"npm": ">=10.0.0",
"node": "22.11.0"
},
"license": "GPL-3.0-only"
}