fchat-rising/electron/package.json

39 lines
982 B
JSON
Raw Normal View History

2018-01-06 16:14:21 +00:00
{
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",
"scripts": {
"build": "node ../webpack development",
"build:dist": "node ../webpack production",
"watch": "node ../webpack watch",
2018-03-28 13:51:05 +00:00
"start": "../node_modules/.bin/electron app"
2017-09-02 01:50:31 +00:00
},
"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",
"url": "https://client.f-list.net/"
2017-09-02 01:50:31 +00:00
}
}
2017-10-17 15:52:22 +00:00
}