fchat-rising/electron/package.json

19 lines
679 B
JSON
Raw Normal View History

2018-01-06 17:14:21 +01:00
{
2020-06-18 16:11:27 -05:00
"name": "fchat",
2022-08-12 18:38:13 -07:00
"version": "1.19.1",
2020-06-18 15:29:18 -05:00
"author": "The F-List Team and Mister Stallion (Esq.)",
2018-08-10 18:59:37 +02:00
"description": "F-List.net Chat Client",
"main": "main.js",
"id": "fchat",
"license": "MIT",
"scripts": {
"build": "node ../webpack development",
"build:dist": "node ../webpack production",
"watch": "node ../webpack watch",
"start": "../node_modules/.bin/electron app",
2020-10-04 16:50:28 -05:00
"startDebugMain": "export ELECTRON_ENABLE_LOGGING=1 && ../node_modules/.bin/electron --serve --inspect-brk=9229 app",
"startDebugRender": "export ELECTRON_ENABLE_LOGGING=1 && ../node_modules/.bin/electron --remote-debugging-port=9229 app",
2018-08-10 18:59:37 +02:00
"pack": "node ./pack"
}
2017-10-17 08:52:22 -07:00
}