Skip to content

Commit

Permalink
🏀 chore: initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
nyomansunima committed Nov 21, 2024
0 parents commit 0741a0e
Show file tree
Hide file tree
Showing 18 changed files with 995 additions and 0 deletions.
Empty file.
Empty file.
Empty file added .github/dependabot.yaml
Empty file.
Empty file.
Empty file added .github/workflows/beautify.yaml
Empty file.
Empty file added .github/workflows/release.yaml
Empty file.
Empty file added .vscode/launch.json
Empty file.
Empty file added .vscode/settings.json
Empty file.
5 changes: 5 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.vscode/**
.vscode-test/**
node_modules/**
.git/**
.gitignore
Empty file added CHANGELOG.md
Empty file.
Empty file added CODE_OF_CONDUCT.md
Empty file.
Empty file added CONTRIBUTING.md
Empty file.
Empty file added LICENSE
Empty file.
Empty file added README.md
Empty file.
Empty file added assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"name": "brook-code-theme",
"version": "1.0.0",
"displayName": "Brook Code Theme",
"publisher": "weecraft",
"description": "A mono chrome with minimal looks and simple styles code editor themes for light & dark environments for perfect developer productivity",
"keywords": [
"visual studio code",
"themes",
"light",
"dark",
"blaze",
"modern",
"minimal",
"simple",
"ghost"
],
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Themes"
],
"author": {
"email": "[email protected]",
"name": "Weecraft",
"url": "https://weecraft.club"
},
"publishConfig": {
"access": "public"
},
"icon": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/weecraft/ghost-code-theme"
},
"bugs": {
"url": "https://github.com/weecraft/ghost-code-theme/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/weecraft/ghost-code-theme",
"contributes": {
"themes": [
{
"label": "Brook Code Light",
"uiTheme": "vs",
"path": "./themes/brook-code-light.json"
},
{
"label": "Brook Code Dark",
"uiTheme": "vs-dark",
"path": "./themes/brook-code-dark.json"
}
]
}
}
Loading

0 comments on commit 0741a0e

Please sign in to comment.