Added first version of Steam

This commit is contained in:
4n4n4s 2023-09-22 12:47:04 +00:00
parent 4231b7dd28
commit 16cb194216
5 changed files with 243 additions and 0 deletions

22
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Steam",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/steam-games.js",
"env": {
"STEAM_JSON": "1",
"STEAM_GAMERPOWER": "1"
}
}
]
}