-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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": "render-gfm",
"version": "2.1.0",
"description": "Render GitHub Flavoured Markdown, with CSS for each of GitHub's themes.",
"keywords": [
"github",
"css",
"syntax-highlighting",
"markdown",
"github-flavored-markdown",
"render",
"themes",
"github-themes"
],
"homepage": "https://github.com/shaunbharat/render-gfm#readme",
"bugs": "https://github.com/shaunbharat/render-gfm/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/shaunbharat/render-gfm.git"
},
"license": "MIT",
"author": "Shaun Bharat",
"type": "module",
"main": "index.js",
"bin": {
"render-gfm": "cli.js"
},
"scripts": {
"build": "tsc --outDir .",
"build:docs": "bash ./scripts/build-docs.sh",
"render-gfm": "ts-node-esm src/cli.ts",
"buildandpublish": "bash ./scripts/publish.sh"
},
"dependencies": {
"commander": "^11.1.0",
"generate-github-markdown-css": "^6.2.0",
"octokit": "^3.1.2",
"prettier": "^3.1.0",
"steno": "^3.1.1"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
}
}