-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1007 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1007 Bytes
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
{
"name": "neuroverseos-startalk",
"version": "1.0.0",
"description": "StarTalk — Astrological translator for MentraOS smart glasses. Set your signs. Tap. Get cosmic perspective.",
"type": "module",
"scripts": {
"start": "tsx src/server.ts",
"dev": "tsx watch src/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mentra/sdk": "^3.0.0",
"neuroverseos-governance": "github:NeuroverseOS/neuroverseos-governance",
"@anthropic-ai/sdk": "^0.52.0",
"openai": "^4.86.0"
},
"devDependencies": {
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
},
"keywords": [
"mentraos",
"smart-glasses",
"astrology",
"zodiac",
"translator",
"ai",
"neuroverseos"
],
"author": "NeuroverseOS",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NeuroverseOS/startalk"
},
"engines": {
"node": ">=20"
}
}