-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.42 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
{
"name": "@evanhalley/fig",
"version": "0.3.1",
"description": "Command line utility that generates features images for blog posts",
"main": "dist/src/fig-cli.js",
"types": "dist/src/fig.d.ts",
"bin": {
"fig-cli": "dist/src/fig-cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"start": "tsc --build && node dist/fig-cli.js --title Hello World --author Evan Halley --date 2021-03-20 --html-template /Users/evan/source/fig/template/template.html --author-image /Users/evan/source/fig/template/author.jpg --css /Users/evan/source/fig/template/style.css -o /Users/evan/Desktop/test.png -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanhalley/fig.git"
},
"keywords": [
"nodejs",
"typescript",
"puppeteer"
],
"author": "Evan Halley - (https://evanhalley.dev/me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanhalley/fig/issues"
},
"homepage": "https://github.com/evanhalley/fig#readme",
"dependencies": {
"@types/puppeteer": "^5.4.4",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"commander": "^7.1.0",
"copy-dir": "^1.3.0",
"fs-extra": "^10.0.0",
"gray-matter": "^4.0.3",
"moment": "^2.29.3",
"puppeteer": "^14.1.1",
"slugify": "^1.4.7"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13"
}
}