Implement big text view and preliminary i18n

This commit is contained in:
aet
2021-11-06 21:49:54 -04:00
parent d2ae4be194
commit 7ee6990be1
22 changed files with 624 additions and 263 deletions

View File

@ -1,6 +1,6 @@
{
"name": "opvault-web",
"version": "0.0.0",
"version": "1.0.0",
"main": "dist/main/index.js",
"author": "proteria",
"license": "GPL-3.0-only",
@ -9,13 +9,14 @@
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"start": "NODE_ENV=development electron --enable-transparent-visuals --disable-gpu ./dist/main/index.js",
"start": "./esbuild.js && NODE_ENV=development electron --enable-transparent-visuals --disable-gpu ./dist/main/index.js",
"bundle": "./scripts/build.sh"
},
"devDependencies": {
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@rollup/plugin-yaml": "^3.1.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^1.0.0",
@ -23,6 +24,7 @@
"electron": "^15.2.0",
"electron-builder": "^22.13.1",
"esbuild": "^0.13.6",
"js-yaml": "^4.1.0",
"opvault.js": "*",
"path-browserify": "^1.0.1",
"react": "^17.0.0",
@ -38,14 +40,19 @@
"files": [
"**/*"
],
"icon": "dist/512x512.png",
"directories": {
"output": "bundle",
"app": "dist"
"app": "dist",
"buildResources": "build"
},
"linux": {
"executableName": "opvault",
"icon": "1p.png",
"category": "Utility"
"category": "Utility",
"icon": "512x512.png",
"target": [
"AppImage"
]
}
}
}