forked from felixbade/assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 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": "web-assistant-ai",
"version": "1.0.0",
"description": "ChatGPT API wrapper",
"main": "src/index.html",
"scripts": {
"build:dev": "webpack --mode development --env version=$(./get-version.sh)",
"build:prod": "webpack --mode production --env version=$(./get-version.sh)",
"deploy:staging": "./deploy.sh .env.staging",
"deploy:production": "./deploy.sh .env.production",
"staging": "npm run build:prod && npm run deploy:staging",
"production": "npm run build:prod && npm run deploy:production",
"start": "npx webpack-dev-server --mode=development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felixbade/open-ai-web-ui.git"
},
"keywords": [
"chatgpt"
],
"author": "Felix Bade",
"license": "ISC",
"bugs": {
"url": "https://github.com/felixbade/open-ai-web-ui/issues"
},
"homepage": "https://github.com/felixbade/open-ai-web-ui#readme",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"dompurify": "^3.0.1",
"html2canvas": "^1.4.1",
"marked": "^4.2.12",
"workbox-webpack-plugin": "^6.5.4"
}
}