mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-11 09:11:50 +00: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.
17 lines
324 B
JSON
17 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"
|
|
}
|
|
}
|