Initial moonlight-native commit

This commit is contained in:
R. Aidan Campbell 2017-12-10 17:33:51 -07:00
parent 053d2944d1
commit e569852eda
3 changed files with 31 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,5 +1,7 @@
user-data-dir/
pnacl/
dist/
node_modules/
# Object files
*.o

View File

@ -4,6 +4,11 @@
"short_name": "Moonlight",
"version": "0.8.0",
"description": "Open-source client for NVIDIA GameStream",
"build":{
"nwFlavor": "sdk",
"excludes":["**/h264bitstream/**/*", "**/libgamestream/**/*", "**/moonlight-common-c/**/*", "**/opus/**/*", "**/ports/**/*", "**/*.cpp", "**/*.hpp", "**/*.c", "**/*.h", "**/*.md",
"make.bat", "Makefile", "**/*.mk", "package.json"]
},
"icons": {
"128": "icons/icon128.png",
"48": "icons/icon48.png",

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "moonlight-chrome",
"version": "1.0.0",
"description": "Open-source client for NVIDIA GameStream",
"main":"index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/cgutman/moonlight-chrome.git"
},
"author": "",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/cgutman/moonlight-chrome/issues"
},
"homepage": "https://github.com/cgutman/moonlight-chrome#readme",
"devDependencies": {
"nwjs-builder-phoenix": "^1.14.6"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "build --chrome-app --tasks mac-x64,win-x64 --mirror https://dl.nwjs.io/ .",
"start": "run --x86 --mirror https://dl.nwjs.io/ ."
}
}