-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
39
40
41
{
"name": "narwhal",
"version": "1.0.0",
"description": "a cute narwhal",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron --inspect=5858 .",
"pack": "electron-builder --dir",
"dist": "electron-builder --win",
"dist-standalone": "electron-builder -p never --win",
"postinstall": "electron-builder install-app-deps"
},
"author": "Aidan Blum Levine",
"license": "ISC",
"devDependencies": {
"electron": "^13.6.9",
"electron-builder": "^23.1.0"
},
"dependencies": {
"@flatten-js/core": "^1.3.4",
"electron-transparency-mouse-fix": "^1.0.0-rc.1",
"moment": "^2.29.1",
"quill": "^1.3.6",
"quill-magic-url": "^4.1.2",
"robotjs": "^0.6.0",
"tippy.js": "^6.3.1"
},
"build": {
"appId": "fun.creature",
"mac": {
"category": "fun.creature.amazing.app"
},
"win": {
"target": [
"portable"
]
}
},
"postinstall": "electron-builder install-app-deps"
}