tumble-yellow-dark-vscode/package.json
simurai 5e2cb4ac30
Merge pull request #4 from paramaggarwal/master
Introduce light+dark theme via use of @primer/primitives
2020-04-27 20:35:27 +09:00

61 lines
1.1 KiB
JSON

{
"name": "github-vscode-theme",
"displayName": "GitHub Theme",
"description": "GitHub theme for VS Code",
"version": "0.2.3",
"preview": true,
"publisher": "GitHub",
"icon": "icon.png",
"galleryBanner": {
"color": "#1b1f23",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/primer/github-vscode-theme"
},
"bugs": {
"url": "https://github.com/primer/github-vscode-theme/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"github",
"light"
],
"contributes": {
"themes": [
{
"label": "GitHub Light",
"uiTheme": "vs",
"path": "./themes/light.json"
},
{
"label": "GitHub Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
}
]
},
"license": "MIT",
"__metadata": {
"id": "7328a705-91fc-49e6-8293-da6f112e482d",
"publisherDisplayName": "GitHub",
"publisherId": "7c1c19cd-78eb-4dfb-8999-99caf7679002"
},
"devDependencies": {
"@primer/primitives": "^2.0.1",
"color": "^3.1.2",
"nodemon": "^2.0.3"
},
"scripts": {
"start": "nodemon --watch src src/index.js",
"build": "node src/index.js"
}
}