-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 887 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 887 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
27
28
29
30
31
32
33
34
35
36
{
"name": "image-to-pixel-art",
"version": "0.1.0",
"description": "Convert images to pixel art with customizable color palettes",
"main": "index.html",
"scripts": {
"dev": "webpack serve --mode development --open",
"build": "webpack --mode production",
"test": "jest",
"lint": "eslint src/**/*.js"
},
"keywords": [
"pixel-art",
"image-conversion",
"color-quantization"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.8.1",
"eslint": "^8.42.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"style-loader": "^3.3.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"file-saver": "^2.0.5",
"jszip": "^3.10.1"
}
}