-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "teler-gemini-node-bridge",
"version": "1.0.0",
"description": "A node bridge for teler and gemini integration.",
"keywords": [
"teler",
"voiceAPI",
"gemini",
"teler-gemini",
"gemini-teler"
],
"homepage": "https://github.com/frejun-tech/teler-gemini-node-bridge#readme",
"bugs": {
"url": "https://github.com/frejun-tech/teler-gemini-node-bridge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frejun-tech/teler-gemini-node-bridge.git"
},
"license": "ISC",
"author": "Frejun Ltd.",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"dependencies": {
"@frejun/teler": "^1.0.7",
"@google/genai": "^1.47.0",
"axios": "^1.13.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.0.9",
"@types/ws": "^8.18.1",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}