-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "prompt-mixer-azure-open-ai-connector",
"version": "1.0.2",
"description": "The Azure OpenAI Connector utilizes the capabilities of sophisticated AI models offered by OpenAI",
"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,json,md}' --write",
"format:check": "prettier '**/*.{js,ts,json,md}' --check",
"type:check": "tsc --noEmit",
"check": "npm run lint && npm run format:check && npm run type:check",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"dependencies": {
"@azure/arm-cognitiveservices": "^7.5.0",
"@azure/identity": "^4.5.0",
"@azure/openai": "^2.0.0-beta.3",
"builtin-modules": "^4.0.0",
"esbuild": "^0.24.0",
"fs": "^0.0.1-security",
"openai": "^4.72.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}