-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "keeper",
"description": "Desktop application for storing user-defined credentials in a secure way.",
"author": "Andrii Melnichuk <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/awesomeandrey/keeper"
},
"homepage": "./",
"version": "5.0.0",
"engines": {
"node": "14.x"
},
"private": true,
"main": "electron/main.js",
"build": {
"appId": "edu.keeper",
"productName": "Keeper",
"copyright": "Copyright © 2024 ${author}",
"files": [
"build/**/*",
"node_modules/**/*"
],
"win": {
"icon": "build/logo.ico"
},
"linux": {
"target": "deb",
"category": "Education",
"icon": "build/logo.icns"
},
"mac": {
"category": "Education",
"icon": "build/logo.icns"
}
},
"scripts": {
"start": "yarn run copy-slds-assets && BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"copy-slds-assets": "rsync node_modules/@salesforce-ux/design-system/assets public -r",
"electron-dev": "NODE_ENV_IS_DEV=1 concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"preelectron-pack": "yarn run copy-slds-assets && yarn build && rsync electron build -r && rsync src build -r --exclude components --exclude *.test.js",
"electron-pack": "yarn electron-builder \"-c.extraMetadata.main=build/electron/main.js\""
},
"dependencies": {
"@salesforce-ux/design-system": "^2.10.2",
"@salesforce/design-system-react": "^0.10.17",
"bcrypt": "5.0.0",
"cryptr": "^6.0.1",
"electron-is-dev": "^1.1.0",
"generate-password": "^1.5.0",
"is-valid-url": "^1.0.1",
"js-base64": "^2.5.1",
"lowdb": "^1.0.0",
"react": "^16.12.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"shortid": "2.2.15",
"use-global-hook": "^0.1.12",
"yarn": "^1.22.10"
},
"devDependencies": {
"concurrently": "^5.0.2",
"electron": "^7.1.7",
"electron-builder": "^24.9.1",
"electron-rebuild": "^1.10.1",
"wait-on": "^3.3.0"
},
"browserslist": [
"defaults"
]
}