-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
44
{
"name": "Note",
"version": "0.0.1-pre-alpha",
"description": "A client-side encrypted note taking application that allows you to safely and securely share notes between multiple computers.",
"main": "lib/electron/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": "https://github.com/SebTota/Note",
"keywords": [
"Note",
"Simple Note",
"Electron"
],
"author": "Sebastian Tota",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^11.2.3",
"electron-builder": "^22.9.1"
},
"build": {
"appId": "com.sebtota.note",
"productName": "Note",
"mac": {
"category": "your.app.category.type"
}
},
"dependencies": {
"axios": "^0.21.1",
"bs58": "^4.0.1",
"directory-tree": "^2.2.6",
"electron-store": "^6.0.1",
"express": "^4.17.1",
"googleapis": "^67.0.0",
"got": "^11.8.1",
"jquery": "^3.5.1",
"mime": "^2.5.0",
"node-google-resumable-upload": "^0.1.2",
"pino": "^6.11.0",
"uuid": "^8.3.2"
}
}