-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 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
{
"name": "storybook-genie",
"version": "1.3.0",
"description": "Storybook Genie is a command line interface tool that can generate Storybook stories from React components.",
"keywords": [
"storybook",
"openai",
"cli",
"react",
"component",
"story",
"command-line",
"tool"
],
"license": "MIT",
"author": "@eduardconstantin",
"type": "module",
"main": "index.js",
"bugs": {
"url": "https://github.com/eduardconstantin/storybook-genie/issues"
},
"homepage": "https://github.com/eduardconstantin/storybook-genie#readme",
"bin": {
"storybook-genie": "./index.js"
},
"scripts": {
"start": "node .",
"up": "npm version patch -f",
"pub": "npm run up && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/eduardconstantin/storybook-genie"
},
"dependencies": {
"@inquirer/core": "7.0.0",
"inquirer": "^9.2.12",
"js-beautify": "^1.14.11",
"openai": "^4.25.0",
"universal-dotenv": "^4.1.0"
}
}