-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@vibevibes/create-experience",
"version": "0.2.0",
"description": "Scaffold a new vibevibes experience — multiplayer AI-powered apps",
"type": "module",
"bin": {
"create-experience": "./bin/create.js"
},
"scripts": {
"dev": "tsx --env-file=.env scripts/dev.ts",
"dev:share": "tsx --env-file=.env scripts/dev.ts --share",
"build": "tsx runtime/bundler.ts",
"test": "tsx scripts/test.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"src",
"runtime",
"scripts",
"experiences",
"templates",
"tsconfig.json",
"CLAUDE.md"
],
"dependencies": {
"@types/three": "^0.182.0",
"@vibevibes/sdk": "^0.1.0",
"esbuild": "^0.27.2",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.182.0",
"ws": "^8.19.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/ws": "^8.18.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}