-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.69 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.69 KB
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
{
"name": "secure-vault-app",
"version": "2.0.0",
"type": "module",
"main": "electron/main.mjs",
"author": "deyman12",
"description": "Secure credential vault with encrypted container storage",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\" \"npm run electron:wait\"",
"electron:wait": "wait-on http://localhost:5173 && cross-env-shell NODE_ENV=development electron .",
"rebuild:electron": "npx electron-rebuild -v 40.0.0 -f -w better-sqlite3",
"electron:start": "cross-env-shell NODE_ENV=production electron .",
"client:build": "npm -w client run build",
"server:dev": "npm -w server run dev",
"server:start": "npm -w server run start",
"client:dev": "npm -w client run dev",
"server:install": "npm install -w server",
"client:install": "npm install -w client",
"install:all": "npm install",
"migrate": "npm -w server run migrate",
"rebuild:dev": "npm rebuild",
"build": "npm run client:build",
"make": "npm run build && npm run rebuild:electron && electron-forge make"
},
"keywords": [
"vault",
"security",
"encryption",
"credential-manager",
"encrypted-container"
],
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron/rebuild": "^4.0.2",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.0.0",
"electron-is-dev": "^3.0.1",
"npm-check-updates": "^19.3.1",
"wait-on": "^9.0.3"
}
}