-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (47 loc) · 1.79 KB
/
package.json
File metadata and controls
48 lines (47 loc) · 1.79 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
{
"name": "fitten-code-2api",
"version": "1.0.0",
"description": "Convert Fitten Code API requests into standard OpenAI API format.",
"license": "MIT",
"author": "bobotechnology",
"repository": {
"type": "git",
"url": "https://github.com/bobotechnology/fitten-code-2api.git"
},
"keywords": [
"fitten",
"openai",
"proxy",
"chat-completions"
],
"main": "index.js",
"type": "commonjs",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "node index.js",
"test": "node --check index.js && node --check src/openai-request.js && node --check src/message-content.js && node --check src/streaming.js",
"check:proxy": "node scripts/check-proxy.js",
"check:stream": "node scripts/check-stream.js",
"check:tool-calls": "node scripts/check-tool-calls.js",
"check:content-array": "node scripts/check-content-array.js",
"check:markdown": "node scripts/check-markdown.js",
"check:newlines": "node scripts/check-newlines.js",
"check:errors": "node scripts/check-errors.js",
"check:image-input": "node scripts/check-image-input.js",
"check:image-stream": "node scripts/check-image-stream.js",
"check:image-cleanup": "node scripts/check-image-cleanup.js",
"check:image-boundaries": "node scripts/check-image-boundaries.js",
"check:all": "npm run check:proxy && npm run check:stream && npm run check:tool-calls && npm run check:content-array && npm run check:markdown && npm run check:newlines && npm run check:errors && npm run check:image-input && npm run check:image-stream && npm run check:image-cleanup && npm run check:image-boundaries"
},
"dependencies": {
"dotenv": "^17.4.2",
"express": "^4.21.2"
},
"devDependencies": {
"openai": "^6.34.0",
"supertest": "^7.2.2"
}
}