-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
39
40
41
42
43
{
"name": "school_meals",
"version": "1.2.2",
"description": "나이스 API 에서 학교 점심/저녁 메뉴를 가져옵니다, 위젯 형식으로 사용할 수 있으며. 학교 컴퓨터에 배치하는걸 목적으로 합니다",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"electronmon": "^2.0.2"
},
"keywords": [
"meal"
],
"author": "[email protected]",
"license": "MIT",
"build": {
"npmRebuild": false,
"productName": "School-Meals",
"appId": "com.github.qwreey75.school_meals",
"win": {
"icon": "assets/icons/win/icon.ico",
"target": [
"portable"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"src/**/*",
"index.js",
"mostBottomWindowWIN32.js",
"package.json"
]
},
"dependencies": {
"win-setwindowpos": "^2.1.0"
}
}