electron-starter/package.json

37 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2019-01-03 02:03:48 +01:00
{
"name": "lbry-electron-starter",
"version": "0.0.1",
"description": "A simple starter application that bundles the lbry sdk",
"main": "index.js",
"scripts": {
"start": "electron ./src/main",
2019-02-19 21:18:20 +01:00
"dev": "electron ./src/main/index.js",
2019-02-03 19:41:33 +01:00
"postinstall": "node build/download-sdk.js"
2019-01-03 02:03:48 +01:00
},
"dependencies": {
2019-02-03 19:14:46 +01:00
"electron": "^4.0.4",
2019-01-03 02:03:48 +01:00
"find-process": "^1.2.0",
"lbry-redux": "lbryio/lbry-redux",
2019-02-03 19:14:46 +01:00
"node-fetch": "^2.3.0",
2019-01-03 02:03:48 +01:00
"url": "^0.11.0"
},
"devDependencies": {
"decompress": "^4.2.0",
"del": "^3.0.0",
"electron-reload": "^1.2.5"
},
"lbrySettings": {
2019-02-19 21:07:19 +01:00
"lbrynetSDKVersion": "0.32.1",
2019-02-03 19:41:33 +01:00
"lbrynetSDKUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vSDKVER/lbrynet-OSNAME.zip",
"lbrynetSDKDir": "dist/sdk",
"lbrynetSDKFileName": "lbrynet"
2019-02-03 19:14:46 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbry-developers/lbry-electron-starter.git"
},
"author": "https://github.com/lbryio/electron-starter/graphs/contributors",
"license": "MIT",
"homepage": "https://github.com/lbry-developers/lbry-electron-starter#readme"
2019-01-03 02:03:48 +01:00
}