-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 953 Bytes
/
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
{
"name": "prompt-mixer-open-ai-with-apollo-connector",
"version": "1.0.0",
"description": "OpenAI Connector with Apollo Search Function",
"type": "module",
"main": "main.js",
"scripts": {
"start": "node main.js",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint '**/*.{js,ts}' --quiet",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"format": "prettier '**/*.{js,ts}' --write",
"format:check": "prettier '**/*.{js,ts}' --check"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"builtin-modules": "^4.0.0",
"esbuild": "^0.21.5",
"openai": "^4.72.0"
},
"devDependencies": {
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}