tumble-yellow-dark-vscode/package.json

51 lines
983 B
JSON
Raw Normal View History

{
2021-10-08 01:42:48 +02:00
"name": "tumble-yellow-dark",
2022-05-12 16:20:15 +02:00
"displayName": "Tumble Yellow Dark",
2021-10-08 01:42:48 +02:00
"description": "VSCode Theme based on the color scheme of my portfolio",
2022-05-12 16:25:05 +02:00
"version": "0.1.1",
2020-04-17 18:27:18 +02:00
"preview": true,
2021-10-08 01:42:48 +02:00
"publisher": "Tumble",
2020-04-30 05:28:57 +02:00
"license": "MIT",
2020-04-17 18:27:18 +02:00
"galleryBanner": {
2021-10-08 01:42:48 +02:00
"color": "#ffc107",
2020-04-17 18:27:18 +02:00
"theme": "dark"
},
"repository": {
"type": "git",
2021-10-08 01:42:48 +02:00
"url": "https://github.com/tumble1999/github-vscode-theme"
2020-04-17 18:27:18 +02:00
},
"bugs": {
2021-10-08 01:42:48 +02:00
"url": "https://github.com/tumble1999/github-vscode-theme/issues"
2020-04-17 18:27:18 +02:00
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"github",
2020-04-30 05:27:48 +02:00
"light",
"dark"
2020-04-17 18:27:18 +02:00
],
"contributes": {
"themes": [
{
2021-10-08 01:42:48 +02:00
"label": "Tumble Yellow Dark",
2020-04-17 18:27:18 +02:00
"uiTheme": "vs",
2021-10-08 01:42:48 +02:00
"path": "./themes/tumble-yellow-dark.json"
2020-04-17 18:27:18 +02:00
}
]
},
"devDependencies": {
2021-09-08 04:47:03 +02:00
"@primer/primitives": "4.7.1",
2021-02-02 14:32:30 +01:00
"chroma-js": "^2.1.0",
"color": "^3.1.2",
"nodemon": "^2.0.3"
},
"scripts": {
"start": "nodemon --watch src src/index.js",
"build": "node src/index.js"
2020-04-17 18:27:18 +02:00
}
2021-10-08 01:42:48 +02:00
}