-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.85 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.85 KB
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
{
"name": "github-markdown-css",
"version": "5.9.0",
"description": "The minimal amount of CSS to replicate the GitHub Markdown style",
"license": "MIT",
"repository": "sindresorhus/github-markdown-css",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"main": "github-markdown.css",
"engines": {
"node": ">=10"
},
"scripts": {
"make:light": "github-markdown-css --no-use-fixture --theme light > github-markdown-light.css",
"make:dark": "github-markdown-css --no-use-fixture --theme dark > github-markdown-dark.css",
"make:dark-dimmed": "github-markdown-css --no-use-fixture --theme dark_dimmed > github-markdown-dark-dimmed.css",
"make:dark-high-contrast": "github-markdown-css --no-use-fixture --theme dark_high_contrast > github-markdown-dark-high-contrast.css",
"make:dark-colorblind": "github-markdown-css --no-use-fixture --theme dark_colorblind > github-markdown-dark-colorblind.css",
"make:light-colorblind": "github-markdown-css --no-use-fixture --theme light_colorblind > github-markdown-light-colorblind.css",
"make:auto": "github-markdown-css --no-use-fixture --theme auto > github-markdown.css",
"make": "npm run make:light && npm run make:dark && npm run make:dark-dimmed && npm run make:dark-high-contrast && npm run make:dark-colorblind && npm run make:light-colorblind && npm run make:auto"
},
"files": [
"github-markdown.css",
"github-markdown-light.css",
"github-markdown-dark.css",
"github-markdown-dark-dimmed.css",
"github-markdown-dark-high-contrast.css",
"github-markdown-dark-colorblind.css",
"github-markdown-light-colorblind.css"
],
"keywords": [
"browser",
"github",
"markdown",
"md",
"css",
"style",
"stylesheet"
],
"devDependencies": {
"generate-github-markdown-css": "^6.6.0"
}
}