-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "robust-vault",
"version": "0.1.0",
"main": "dist/main/index.cjs",
"description": "Backup your data from anywhere to anywhere (local drives only).",
"scripts": {
"dev": "node scripts/watch.mjs",
"build": "vue-tsc --noEmit --p src/renderer/tsconfig.json && node scripts/build.mjs"
},
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"author": {
"name": "Relloccate",
"email": "no-email@no.email",
"url": "https://github.com/relloccate"
},
"keywords": [
"backup",
"files",
"data",
"storage",
"vault"
],
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.3",
"electron": "19.0.8",
"electron-builder": "^23.1.0",
"electron-devtools-installer": "^3.2.0",
"typescript": "^4.7.4",
"vite": "^2.9.10",
"vite-plugin-electron": "^0.4.7",
"vite-svg-loader": "^3.3.0",
"postcss-preset-env": "^7.7.1",
"postcss-color-mod-function": "^3.0.3",
"vue-tsc": "^0.38.4"
},
"dependencies": {
"vue": "^3.2.37",
"pinia": "^2.0.14"
}
}