-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 727 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 727 Bytes
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
{
"name": "screen-reader-image-description-generator",
"version": "0.1.0",
"description": "Open ai screen reader image description generator",
"private": true,
"browserslist": "last 4 Chrome versions",
"scripts": {
"clean": "rimraf dist",
"start": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js"
},
"author": "danielleford04",
"license": "ISC",
"dependencies": {
"openai": "^4.56.1"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}