-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.58 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "azure-openai-demos",
"version": "1.0.0-beta.0",
"description": "Misc. experiments with Azure OpenAI",
"private": true,
"type": "module",
"bin": {
"aoi-demos": "./src/cli/index.ts"
},
"scripts": {
"build": "npx tsc",
"clean-images": "rm ./src/dall-e-image-rest/generated-images/*.png && git co -- ./src/dall-e-image-rest/generated-images",
"dev": "cross-env NODE_ENV=development LOCAL_DEV=true npx tsx --trace-warnings ",
"english-translator-demo": "npm run prod -- ./src/english-translator/index.ts",
"gpt4-chatbot-demo": "npm run prod -- ./src/gpt4-chatbot/index.ts",
"gpt4-vision-demo": "npm run prod -- ./src/gpt4-vision/index.ts",
"gpt4-vision-compare-demo": "npm run prod -- ./src/gpt4-vision-compare/index.ts",
"image-generation-demo": "npm run prod -- ./src/dall-e-image-rest/index.ts",
"poetry-generator-demo": "npm run prod -- ./src/poetry-generator/index.ts ",
"prod": "cross-env NODE_ENV=production npx tsx ",
"scratch": "npm run dev -- ./src/scratch.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"text-completion-demo": "npm run prod -- ./src/text-to-emoji-lib/index.ts",
"text-completion-rest-demo": "npm run prod -- ./src/text-to-emoji-rest/index.ts",
"typecheck": "npx tsc --noEmit",
"typedoc": "npx typedoc --out ./docs --entryPointStrategy expand ./src/lib --plugin typedoc-plugin-markdown --readme none",
"whisper-transcribe-mp3-demo": "npm run prod -- ./src/whisper-transcribe-mp3/index.ts"
},
"engines": {
"node": ">= 20.x",
"npm": ">= 10.x"
},
"keywords": ["azure", "openai", "azure openai"],
"author": {
"name": "Michael Sprague",
"email": "ms388@cornell.edu"
},
"license": "MIT",
"dependencies": {
"@azure/openai": "1.0.0-beta.13",
"benny-hill": "1.3.0",
"boxen": "8.0.1",
"chalk": "5.3.0",
"common-tags": "1.8.2",
"dotenv": "16.4.5",
"figlet": "1.8.0",
"got": "14.4.4",
"inquirer": "12.0.1",
"langchain": "0.3.5",
"openai": "4.71.1",
"ora": "8.1.1",
"terminal-image": "3.0.0",
"uuid": "11.0.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/common-tags": "1.8.4",
"@types/figlet": "1.7.0",
"@types/inquirer": "9.0.7",
"@types/node": "22.9.0",
"@types/uuid": "10.0.0",
"@types/yargs": "17.0.33",
"cross-env": "7.0.3",
"cz-git": "1.10.1",
"tsx": "4.19.2",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
}
}