forked from dethMastery/canvas-watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 992 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "d-mark",
"version": "1.0.4",
"description": "exif watermark generator but on my config",
"main": "./bin/index.js",
"keywords": [
"nodejs",
"cli-tools",
"watermark"
],
"author": "detzz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/katzEco/dethz-mark"
},
"dependencies": {
"canvas": "^2.11.2",
"exif-parser": "^0.1.12",
"fractional": "^1.0.0",
"fs": "^0.0.1-security",
"os": "^0.1.2",
"path": "^0.12.7",
"pkg": "^5.8.1",
"yargs": "^17.2.1"
},
"scripts": {
"dev": "node ./bin/cli.js",
"build": "pkg ."
},
"bin": {
"d-mark": "./bin/cli.js"
},
"pkg": {
"scripts": "bin/**/*.js",
"targets": [
"node18-macos-arm64",
"node18-windows-arm64",
"node18-linux-arm64",
"node18-macos-x64",
"node18-windows-x64",
"node18-linux-x64"
],
"options": [
"experimental-modules"
],
"outputPath": "dist"
}
}