-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@hank-iv/memegen",
"version": "3.0.2",
"author": "Hank",
"license": "MIT",
"description": "A meme generator in NodeJs",
"keywords": [
"meme",
"memegenerator",
"image",
"fun"
],
"bugs": {
"url": "https://github.com/hankolsen/memegen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hankolsen/memegen.git"
},
"homepage": "https://github.com/hankolsen/memegen#readme",
"type": "module",
"source": "src/index.js",
"bin": {
"meme": "./bin/meme.js"
},
"scripts": {
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"build": "npm run clean && rollup -c && npm run cp:assets",
"clean": "npx rimraf lib",
"cp:assets": "cp -R src/assets lib/"
},
"directories": {
"lib": "lib",
"bin": "bin"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"canvas": "^2.11.2",
"img-clipboard": "^1.1.0",
"meow": "^12.0.1"
},
"devDependencies": {
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^3.0.0",
"rollup": "^3.26.2"
}
}