1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-11 09:11:50 +00:00
tobspr_shapez.io/electron/package.json
Даниїл Григор'єв fc33cc2fbf
Add dedicated saves storage, new fs job types
Keep track of the storage ID in each renderer Storage instance and pass
it to the IPC bridge. Jobs are dispatched to the relevant handler (only
saves/ for now) and all (de)compression is handled there.

Add dedicated fs-job types to read or write and (de)compress data
from/to the file picked by the user. Remove redundant utility functions
that used web APIs instead.
2025-04-15 01:57:00 +03:00

22 lines
455 B
JSON

{
"name": "electron",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"private": true,
"scripts": {
"start": "tsc && electron ."
},
"dependencies": {
"@msgpack/msgpack": "^3.1.1",
"semver": "^7.7.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/semver": "^7.7.0",
"electron": "^31.3.0",
"typescript": "^5.8.2"
}
}