-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 750 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "xo",
"version": "1.0.0",
"description": "it is a electron based \"tik tak toe\" game",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build-win": "npx electron-packager . tic-tac-toe --platform=win32 --asar --icon=./assets/favicon.ico --overwrite",
"build-mac": "npx electron-packager . tic-tac-toe --platform=darwin --asar --icon=./assets/favicon.ico --overwrite",
"build-linux": "npx electron-packager . tic-tac-toe --platform=linux --asar --icon=./assets/favicon.ico --overwrite"
},
"author": "rahul",
"license": "MIT",
"devDependencies": {
"electron": "^26.2.2",
"electron-packager": "^17.1.2",
"eslint": "^8.49.0"
}
}