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{
"name": "mentraos-cloud-example-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --hot src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@mentra/sdk": "^2.0.3",
"express": "^4.21.2",
"ws": "^8.18.1"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/express": "^5.0.1",
"@types/node": "^22.13.14",
"@types/ws": "^8.18.0"
}
}