github-markdown-css/package.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2014-05-08 02:02:46 +08:00
{
2019-01-31 20:49:28 +08:00
"name": "github-markdown-css",
2024-02-04 14:17:09 +08:00
"version": "5.5.1",
2019-01-31 20:49:28 +08:00
"description": "The minimal amount of CSS to replicate the GitHub Markdown style",
"license": "MIT",
"repository": "sindresorhus/github-markdown-css",
2020-02-22 18:31:42 +08:00
"funding": "https://github.com/sponsors/sindresorhus",
2019-01-31 20:49:28 +08:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2020-02-22 18:31:42 +08:00
"url": "https://sindresorhus.com"
2019-01-31 20:49:28 +08:00
},
"main": "github-markdown.css",
2023-10-11 03:26:37 +08:00
"engines": {
"node": ">=10"
},
2019-01-31 20:49:28 +08:00
"scripts": {
2021-10-17 20:15:46 +08:00
"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"
2019-01-31 20:49:28 +08:00
},
"files": [
2021-10-17 20:15:46 +08:00
"github-markdown.css",
"github-markdown-dark.css",
"github-markdown-light.css"
2019-01-31 20:49:28 +08:00
],
"keywords": [
"browser",
"github",
"markdown",
"md",
"css",
"style",
"stylesheet"
],
"devDependencies": {
2023-12-11 22:11:26 +08:00
"generate-github-markdown-css": "^6.2.0"
2019-01-31 20:49:28 +08:00
}
2014-05-08 02:02:46 +08:00
}