51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "autoupdateproof",
|
|
"productName": "Auto updater proof",
|
|
"version": "1.0.6",
|
|
"description": "Auto updater proof of concept",
|
|
"main": "src/js/main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dist": "electron-builder --publish always"
|
|
},
|
|
"build": {
|
|
"appId": "com.tracypearson.autoupdateproof",
|
|
"publish": {
|
|
"provider": "custom"
|
|
},
|
|
"files": [
|
|
"**/*",
|
|
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
|
|
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
|
|
"!**/node_modules/*.d.ts",
|
|
"!**/node_modules/.bin",
|
|
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
|
|
"!.editorconfig",
|
|
"!**/._*",
|
|
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
|
|
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
|
|
"!**/{appveyor.yml,.travis.yml,circle.yml}",
|
|
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}",
|
|
"!**/publish/*",
|
|
"!**/dist/*"],
|
|
"win": {
|
|
"target": "nsis"
|
|
},
|
|
"nsis": {
|
|
"oneClick": true,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": false,
|
|
"installerIcon": null
|
|
}
|
|
},
|
|
"author": "Tracy Pearson",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"electron-updater": "^5.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^23.0.0",
|
|
"electron-builder": "^23.6.0"
|
|
}
|
|
}
|