-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "transparentize",
"description": "Remove background color of an image file to make it transparent. The resulting effect mimicking the behavior of 'multiply' blend mode in Photoshop, but on transparent background",
"version": "0.2.0",
"source": "src/cli/index.js",
"main": "dist/main.js",
"author": {
"name": "Francesco Carrella",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli:build": "esbuild src/cli/index.js --platform=node --target=node10.4 --bundle --outfile=dist/bin/transparentize",
"cli:watch": "yarn cli:build --watch",
"lib:build": "esbuild src/lib/index.js --platform=node --target=node10.4 --bundle --outfile=dist/lib/transparentize.js",
"lib:watch": "yarn lib:build --watch",
"build": "yarn lib:build && yarn cli:build",
"watch": "yarn lib:watch && yarn cli:watch"
},
"dependencies": {
"buffer": "^6.0.3",
"chalk": "^5.0.1",
"color-rgba": "^2.4.0",
"commander": "^9.2.0",
"es6-error": "^4.1.1",
"fast-png": "^6.1.0",
"jpeg-js": "^0.4.3",
"path-validation": "^0.2.3",
"progress": "^2.0.3",
"tiff": "^5.0.3",
"yesno": "^0.3.1"
},
"devDependencies": {
"esbuild": "^0.14.39"
},
"engines": {
"node": ">=10"
}
}