-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.1 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
{
"name": "node-dall-ai-2",
"version": "1.0.3",
"description": "A type safe library for interacting with OpenAI's Dall-E 2 AI.",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"dev": "nodemon src/index.ts",
"build": "rimraf ./build && tsc",
"start": "npm run build && node ./build/index.js"
},
"keywords": [
"openai",
"image-ai",
"image",
"discord",
"typescript",
"node",
"axios",
"dall-ai",
"dalle",
"nodejs",
"dalle-node",
"dalle-nodejs",
"dalle-node-js",
"dall-e",
"openai",
"ai",
"deep learning",
"openai-api",
"openai-api-js",
"dalle-api",
"dall-e-api",
"gpt-3",
"gpt3",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/kabirsingh2004/node-dall-ai.git"
},
"author": "KabirSingh2004",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.1"
}
}