mirror of
https://github.com/sindresorhus/github-markdown-css.git
synced 2024-03-22 13:10:53 +08:00
38 lines
1006 B
JSON
38 lines
1006 B
JSON
{
|
|
"name": "github-markdown-css",
|
|
"version": "5.0.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",
|
|
"scripts": {
|
|
"make:light": "github-markdown-css --type light > github-markdown-light.css",
|
|
"make:dark": "github-markdown-css --type dark > github-markdown-dark.css",
|
|
"make:auto": "github-markdown-css --type auto > github-markdown.css",
|
|
"make": "npm run make:light && npm run make:dark && npm run make:auto"
|
|
},
|
|
"files": [
|
|
"github-markdown.css",
|
|
"github-markdown-dark.css",
|
|
"github-markdown-light.css"
|
|
],
|
|
"keywords": [
|
|
"browser",
|
|
"github",
|
|
"markdown",
|
|
"md",
|
|
"css",
|
|
"style",
|
|
"stylesheet"
|
|
],
|
|
"devDependencies": {
|
|
"generate-github-markdown-css": "^5.0.0"
|
|
}
|
|
}
|