-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 929 Bytes
/
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
{
"name": "chatgpt-diagram-renderer",
"version": "1.0.0",
"description": "Renders Diagrams like PlantUML directly in the ChatGPT Webinterface.",
"scripts": {
"build": "webpack --mode production",
"build:firefox": "npm run build && zip ./dist ./artifacts/firefox-extension.zip",
"lint": "eslint 'src/**/*.{js,jsx}'",
"format": "prettier --write 'src/**/*.{js,jsx,json}'",
"dev": "webpack serve --mode development",
"firefox": "web-ext run --source-dir=dist --watch-files=dist"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-zip": "^3.1.0",
"eslint": "^7.32.0",
"prettier": "^2.4.1",
"stream-browserify": "^3.0.0",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"lodash": "^4.17.21",
"pako": "^2.0.4"
}
}