mirror of
https://github.com/sindresorhus/github-markdown-css.git
synced 2024-03-22 13:10:53 +08:00
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "github-markdown-css",
|
|
"version": "5.5.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",
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"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": "^6.2.0"
|
|
}
|
|
}
|