-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 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": "everything-api",
"version": "1.0.1",
"description": "A mocking API that is able to reply any GET request with AI generated JSON using OpenAI API inferring the data to be returned from the request URL",
"main": "index.js",
"bin": {
"everything-api": "index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node --env-file=.env --watch index.js",
"generate-help": "node resources/generate-help.js",
"lint": "standard",
"lint-fix": "standard --fix",
"start": "node index.js",
"test": "nyc node --test tests/*.js"
},
"keywords": [
"mocking",
"llm",
"openai"
],
"author": "edsadr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/edsadr/everything-api"
},
"dependencies": {
"fastify": "^4.26.2",
"file-system-cache": "^2.4.4",
"openai": "^4.37.1",
"pino-pretty": "^11.0.0"
},
"devDependencies": {
"marked": "^12.0.1",
"marked-terminal": "^7.0.0",
"nock": "^13.5.4",
"nyc": "^15.1.0",
"standard": "^17.1.0"
}
}