-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.54 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nymph",
"version": "1.0.0",
"description": "The artificial intelligence powered by opensource.",
"author": "Taiwan Web Technology Promotion Organization",
"homepage": "https://web-tech.tw",
"license": "MIT",
"type": "module",
"main": "app.ts",
"scripts": {
"export-openapi": "node export_openapi.ts",
"dev": "node --watch app.ts",
"start": "node app.ts",
"lint": "eslint .",
"type-check": "npx tsc --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"@langchain/community": "^1.1.10",
"@langchain/core": "^1.1.18",
"@langchain/google-genai": "^2.1.14",
"@langchain/mongodb": "^1.1.0",
"@langchain/openai": "^1.2.4",
"@langchain/redis": "^1.0.1",
"@line/bot-sdk": "^9.4.4",
"@matrix-org/matrix-sdk-crypto-nodejs": "^0.2.0-beta.1",
"axios": "^1.3.4",
"cors": "^2.8.5",
"dayjs": "^1.11.19",
"discord-api-types": "^0.37.103",
"discord.js": "^14.16.3",
"discordjs-reaction-role": "^3.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-validator": "^6.14.3",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^1.2.16",
"matrix-bot-sdk": "^0.7.1",
"mongoose": "^6.13.3",
"node-cache": "^5.1.2",
"openweather-api-node": "^3.1.5",
"quickjs-emscripten": "^0.32.0",
"request-ip": "^3.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"tavily": "^1.0.2",
"ua-parser-js": "^1.0.39",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@eslint/js": "^9.21.0",
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.13.5",
"@types/node-cache": "^4.2.5",
"@types/request-ip": "^0.0.41",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.21.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^50.6.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}