-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"build": {
"appId": "net.amitoj.flappytoj",
"productName": "Flappytoj"
},
"name": "flappytoj",
"version": "1.0.4",
"description": "Simple electron based flappybird ripoff",
"files": [
"./build/**/*",
"./tsdist/**/*",
"./resources/**/*"
],
"main": "./tsdist/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run build && electron ./tsdist/main.js",
"package": "npm run build && electron-builder -mwl --win portable"
},
"keywords": [
"Flappy",
"Amitoj"
],
"author": "Amitoj Singh",
"license": "MIT",
"devDependencies": {
"@types/discord-rpc": "^3.0.4",
"electron": "^11.2.3",
"electron-builder": "^22.9.1"
},
"dependencies": {
"@types/electron": "^1.6.10",
"axios": "^0.21.1",
"discord-rpc": "^3.2.0"
}
}