-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "tdllm",
"version": "1.0.0",
"description": "Test-driven LLM code generation API",
"scripts": {
"start": "tsc && node ./dist/server.js",
"build": "tsc",
"test": "TS_NODE_TRANSPILE_ONLY=1 PORT=30001 NODE_ENV=test ./node_modules/.bin/mocha --timeout 30000 test/*.ts",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"fmt": "pnpm format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marc-weber1/TDLLM.git"
},
"author": "Marc Weber",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/marc-weber1/TDLLM/issues"
},
"homepage": "https://github.com/marc-weber1/TDLLM#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"openai": "^3.3.0",
"pino-http": "^8.3.3",
"pino-pretty": "^10.1.0",
"simple-markdown": "^0.7.3"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"prettier": "^2.8.8",
"ts-mocha": "^10.0.0",
"typescript": "^5.1.5"
}
}