-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "mock-openai-api",
"version": "1.0.6",
"description": "A mock OpenAI Compatible Provider API server",
"keywords": [
"openai",
"mock",
"debug",
"typescript",
"api",
"server"
],
"homepage": "https://github.com/zerob13/mock-openai-api#readme",
"bugs": {
"url": "https://github.com/zerob13/mock-openai-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerob13/mock-openai-api.git"
},
"license": "MIT",
"author": "zerob13",
"type": "commonjs",
"main": "dist/index.js",
"bin": {
"mock-openai-api": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "ts-node src/cli.ts",
"lint": "npx -y oxlint src/**/*.ts"
},
"dependencies": {
"commander": "^14.0.0",
"cors": "^2.8.5",
"express": "^5.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}