mirror of
https://github.com/tobspr-games/shapez.io.git
synced 2026-02-04 06:42:35 -08:00
Yarn seems to complain due to my hand-edited package.json, but TypeScript packages are out of sync if I let it update the electron one. To avoid these issues, update both packages.
16 lines
324 B
JSON
16 lines
324 B
JSON
{
|
|
"name": "electron",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "tsc && electron ."
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"electron": "^31.3.0",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|