-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "story-gpt",
"version": "0.0.0-updated-via-gh-releases",
"description": "Generate a story with an image from a prompt using OpenAI's GPT",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"lint": "eslint",
"fix": "eslint --fix",
"docs": "typedoc --readme README.md src/index.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingBull-dev/story-gpt.git"
},
"keywords": [
"OpenAI",
"GPT",
"Story",
"StoryBot"
],
"author": "Javier Bullrich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingBullDev/story-gpt/issues"
},
"homepage": "https://github.com/CodingBullDev/story-gpt#readme",
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"dependencies": {
"openai": "^4.45.0"
}
}