-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 KB
/
package.json
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": "tibetan-ml-kit",
"version": "1.0.0",
"description": "Tibetan ML Kit",
"main": "index.ts",
"scripts": {
"test": "npm run test",
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build-and-start": "npm run build && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KharagEdition/tibetan-chatbot-interface.git"
},
"keywords": [
"Tibetan",
"kharagedition",
"tibetan-chatbot",
"tibetan-ml-kit",
"tibetan-translate"
],
"author": "Kunchok Tashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/KharagEdition/tibetan-chatbot-interface/issues"
},
"homepage": "https://github.com/KharagEdition/tibetan-chatbot-interface#readme",
"dependencies": {
"@google/generative-ai": "^0.13.0",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"form-data": "^4.0.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}