fchat-rising/electron/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

{
2017-09-02 01:50:31 +00:00
"name": "fchat",
"version": "3.0.0",
"author": "The F-List Team",
"description": "F-List.net Chat Client",
"main": "main.js",
"license": "MIT",
"dependencies": {
"keytar": "^4.0.4",
"spellchecker": "^3.4.3"
},
"devDependencies": {
2017-10-17 15:52:22 +00:00
"electron": "^1.8.1",
2017-09-02 01:50:31 +00:00
"electron-builder": "^19.33.0",
"electron-log": "^2.2.9",
"electron-updater": "^2.8.9",
"extract-text-webpack-plugin": "^3.0.0"
},
"scripts": {
"build": "../node_modules/.bin/webpack",
"build:dist": "../node_modules/.bin/webpack --env production",
"watch": "../node_modules/.bin/webpack --watch",
"start": "electron app"
},
"build": {
"appId": "net.f-list.f-chat",
"productName": "F-Chat",
"files": [
"*",
"sounds",
"themes",
"!**/*.map",
"!node_modules/",
"node_modules/**/*.node"
],
"asar": false,
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
2017-09-02 01:50:31 +00:00
"linux": {
"category": "Network"
},
"publish": {
"provider": "generic",
2017-10-16 23:58:57 +00:00
"url": "https://client.f-list.net/",
2017-09-02 01:50:31 +00:00
"channel": "latest"
}
}
2017-10-17 15:52:22 +00:00
}