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{
"name": "ascii-to-binimg",
"version": "1.0.0",
"description": "Web interface for ASCII to binary image conversion",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development",
"watch": "webpack --mode=development --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/"
},
"devDependencies": {
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^6.8.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.29.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.4",
"prettier": "^3.1.0",
"sass": "^1.93.2",
"sass-loader": "^16.0.5",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@simonwep/pickr": "^1.9.1",
"bulma": "^1.0.4"
}
}