mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-13 02:01:51 +00:00
Unfortunately we have to keep a second copy for now. The lockfile specifies the same version as used in the root package to avoid issues. This may be replaced with Node.js type stripping in the future. README.md is updated to include the correct command for testing the Electron wrapper.
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.4.5"
|
|
}
|
|
}
|