-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "@rhighs/gen2e-llm",
"version": "1.0.11",
"description": "module used across gen2e containing LLM call primitives for various sources and models",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@rhighs/gen2e-logger": "^1.0.3",
"esprima": "^4.0.1",
"openai": "^4.17.3",
"sanitize-html": "^2.11.0",
"tiktoken": "^1.0.15",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.2.5",
"jest": "^29.7.0",
"open": "^10.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
},
"scripts": {
"test-server": "tsx ./tests/bin/start-test-server.ts",
"build": "tsc --project tsconfig.build.json",
"ts-node": "ts-node",
"format": "prettier --write ./src",
"lint": "prettier --check ./src",
"test": "jest tests/unit/**.test.ts",
"test:integration": "jest tests/integration/**.test.ts",
"test-watch": "jest --watch"
},
"author": "Roberto Montalti",
"license": "MIT"
}