Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Vendicated committed Mar 29, 2023
0 parents commit 0a3a0ca
Show file tree
Hide file tree
Showing 12 changed files with 1,654 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
node_modules
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Vencord Desktop

A standalone Electron app that loads Discord & Vencord (very early and unfinished)
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "vencorddesktop",
"private": true,
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"build": "tsx scripts/build.mts",
"watch": "pnpm build --watch",
"start": "pnpm build && electron .",
"start:watch": "tsx scripts/startWatch.mts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [ ],
"author": "Vendicated <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^18.15.11",
"electron": "^23.2.0",
"esbuild": "^0.17.14",
"tsx": "^3.12.6",
"typescript": "^5.0.2"
}
}
Loading

0 comments on commit 0a3a0ca

Please sign in to comment.