Skip to content

Instantly share code, notes, and snippets.

@ZedDevStuff
Created June 22, 2025 20:49
Show Gist options
  • Save ZedDevStuff/9e4fb5ba792ff17cdf270f6968e14539 to your computer and use it in GitHub Desktop.
Save ZedDevStuff/9e4fb5ba792ff17cdf270f6968e14539 to your computer and use it in GitHub Desktop.
{
"technologies": [
{
"name": "csharp",
"aliases": ["c#", "cs"],
"binary": "dotnet",
"commands": {
"build": {
"binary": "dotnet",
"arguments": "build"
},
"run": {
"binary": "dotnet",
"arguments": "run"
},
"dev": {
"binary": "dotnet",
"arguments": "run"
},
"addlib": {
"binary": "dotnet",
"arguments": "add package"
}
}
},
{
"name": "typecript-bun",
"aliases": ["ts-bun", "tsbun"],
"binary": "bun",
"commands": {
"build": {
"binary": "bun",
"arguments": "run build"
},
"run": {
"binary": "bun",
"arguments": "dev"
},
"dev": {
"binary": "bun",
"arguments": "dev"
},
"addlib": {
"binary": "bun",
"arguments": "add"
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment