-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
66 lines (66 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "model-router",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint --ignore-path .eslintignore \"src/**/*.{ts,tsx}\"",
"prepare": "husky install"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.10.0",
"@anthropic-ai/tokenizer": "^0.0.4",
"@fastify/cors": "^8.3.0",
"@fastify/jwt": "^7.2.0",
"@fastify/rate-limit": "^9.0.1",
"@fastify/swagger": "^8.6.0",
"@fastify/swagger-ui": "^1.9.0",
"@fastify/type-provider-typebox": "^3.2.0",
"@sentry/node": "^7.63.0",
"@sinclair/typebox": "^0.28.20",
"cohere-ai": "^7.4.0",
"docusaurus-plugin-typedoc": "^0.21.0",
"dotenv": "^16.3.1",
"eventsource": "^2.0.2",
"fastify": "^4.18.0",
"fastify-cron": "^1.3.1",
"fastify-sse-v2": "^3.1.0",
"gpt-3-encoder": "^1.1.4",
"js-tiktoken": "^1.0.7",
"openai": "^4.17.0",
"pg": "^8.11.1",
"replicate": "^0.22.0",
"ts-node": "^10.9.1",
"typedoc-plugin-markdown": "^3.17.1",
"typeorm": "^0.3.17",
"typeorm-fastify-plugin": "^1.0.5",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/cron": "^2.4.0",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"prettier": "^3.1.1",
"typedoc": "^0.25.4",
"typescript": "^5.1.5"
},
"lint-staged": {
"*.{js,ts,json,css,scss,md}": [
"prettier --write"
],
"*.ts": [
"eslint"
],
"*.js": "eslint --cache --fix"
}
}