-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.56 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
56
57
58
59
60
61
62
63
{
"name": "goodvibes",
"version": "3.0.0",
"type": "module",
"description": "A starter kit for building multiplayer web games using Three.js, featuring real-time WebSocket networking, Cloudflare edge deployment, and Durable Objects for game state management",
"keywords": [
"threejs",
"multiplayer",
"game",
"cloudflare",
"durable-objects",
"websocket",
"typescript",
"vite",
"edge-computing",
"real-time"
],
"author": {
"name": "benallfree",
"url": "https://x.com/benallfree"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benallfree/goodvibes"
},
"scripts": {
"types": "wrangler types",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "wrangler deploy",
"ship": "bun run build && bun run deploy"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.0.7",
"@tailwindcss/vite": "^4.1.4",
"@types/three": "^0.175.0",
"daisyui": "^5.0.20",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"three": "^0.175.0",
"typescript": "^5.8.3",
"vanjs-core": "^1.5.3",
"vibescale": "^2.0.1",
"vite": "^6.2.6",
"vite-imagetools": "^7.0.5",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-image-optimizer": "^1.1.8",
"wrangler": "^4.11.1"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"plugins": [
"prettier-plugin-organize-imports"
]
}
}