freechat/freechat-client/package.json
shockrah 42d6a77050 - Removing network control from the cache
From this point forward the cache should basically just be a data container.
Methods on the cache object are there for convenience and should only ever
return very simple data [booleans, integers, () etc.].
The cache should also have very litter/no concept of commands to decouple it
from the renderer process.
! list_channels is still implemented in the cache however it remaains a vestige
and will be moved to the net module

Also the client is getting some new packages for websocket connections and
while they work some additional work has to be put in to figure out where fug to
actually place the websocket so that it can update the cache+DOM in a seomewhat sensible fashion
2021-04-11 17:39:54 -07:00

25 lines
518 B
JSON

{
"name": "freechat-client",
"version": "0.1.0",
"main": "main.js",
"scripts": {
"build": "sh scripts/build-sass.sh build",
"start": "electron . --",
"test": "node testing/main.js"
},
"dependencies": {
"argparse": "^2.0.1",
"bootstrap": "^4.6.0",
"got": "^11.8.2",
"jquery": "^3.6.0",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"popper.js": "^1.16.1",
"typescript": "^4.2.3",
"ws": "^7.4.4"
},
"devDependencies": {
"electron": "^7.3.3"
}
}