-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.88 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
45
46
47
48
49
50
51
52
{
"name": "simplekeys",
"productName": "SimpleKeys",
"version": "0.3.0",
"description": "Um gerenciador de senhas leve, versátil e seguro.",
"main": "src/main.js",
"scripts": {
"TEST": "npx electron .",
"BUILD": "npx electron-packager ./ SimpleKeys --overwrite --platform=win32 --arch=x64 --icon=icon.ico --prune=true --out=out/ --version-string.ProductName='SimpleKeys' --win32metadata.requested-execution-level='requireAdministrator'",
"SETUP": "npx electron-installer-windows --src=out/SimpleKeys-win32-x64/ --dest=out/installer --animation=animation.gif --icon=icon.ico --iconNuget=icon.png --noMsi=false --remoteReleases=https://github.com/bainloko/SimpleKeys"
},
"commentScripts": {
"comment": "If desired, one can sign one's final executable program appending this code to the SETUP script: '--certificateFile cert.pfx --certificatePassword ...'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bainloko/SimpleKeys.git"
},
"keywords": [
"Senhas",
"Gerenciador",
"Gerador",
"Passwords",
"Manager",
"Generator"
],
"author": "Kauã Maia Cousillas",
"license": "BSD-3-Clause-Clear",
"copyright": "Copyright (c) 2022 Kauã Maia Cousillas",
"bugs": {
"url": "https://github.com/bainloko/SimpleKeys/issues",
"email": "kaua.maia177@gmail.com"
},
"homepage": "https://github.com/bainloko/SimpleKeys#readme",
"dependencies": {
"@journeyapps/sqlcipher": "^5.3.1",
"electron-better-ipc": "^2.0.1",
"electron-context-menu": "^3.5.0",
"electron-log": "^4.4.8",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"electron-util": "^0.17.2",
"fs-extra": "^10.1.0",
"sequelize": "^6.21.6"
},
"devDependencies": {
"cli-loading-animation": "^1.0.6",
"electron": "^20.1.3",
"electron-installer-windows": "^3.0.0",
"electron-packager": "^16.0.0"
}
}