112 lines
3.6 KiB
JSON
112 lines
3.6 KiB
JSON
{
|
||
"name": "laude",
|
||
"version": "0.6.3",
|
||
"description": "Не Залипай — Windows desktop rhythm and exercise reminder",
|
||
"main": "out/main/index.js",
|
||
"author": "AnRil",
|
||
"private": true,
|
||
"scripts": {
|
||
"dev": "electron-vite dev",
|
||
"build": "electron-vite build",
|
||
"preview": "electron-vite preview",
|
||
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
|
||
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
|
||
"typecheck": "npm run typecheck:node && npm run typecheck:web",
|
||
"test": "vitest",
|
||
"test:run": "vitest run",
|
||
"test:coverage": "vitest run --coverage",
|
||
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"*.{json,md}\" \".github/**/*.yml\"",
|
||
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\" \"*.{json,md}\"",
|
||
"lint": "eslint src --ext .ts,.tsx --max-warnings 0",
|
||
"verify": "powershell -ExecutionPolicy Bypass -File scripts/verify.ps1",
|
||
"dist": "electron-vite build && electron-builder --win --x64",
|
||
"dist:dir": "electron-vite build && electron-builder --win --x64 --dir",
|
||
"publish": "electron-vite build && electron-builder --win --x64 --publish always",
|
||
"release": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1",
|
||
"gen:icons": "powershell -ExecutionPolicy Bypass -File scripts/gen-icons.ps1"
|
||
},
|
||
"dependencies": {
|
||
"@fontsource/bricolage-grotesque": "^5.2.10",
|
||
"@fontsource/jetbrains-mono": "^5.2.8",
|
||
"@fontsource/plus-jakarta-sans": "^5.2.8",
|
||
"electron-updater": "^6.8.9",
|
||
"framer-motion": "^11.11.17",
|
||
"lucide-react": "^0.460.0",
|
||
"react": "^18.3.1",
|
||
"react-dom": "^18.3.1",
|
||
"react-router-dom": "^6.28.0",
|
||
"zustand": "^5.0.1"
|
||
},
|
||
"devDependencies": {
|
||
"@types/node": "^22.19.19",
|
||
"@types/react": "^18.3.12",
|
||
"@types/react-dom": "^18.3.1",
|
||
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
||
"@typescript-eslint/parser": "^8.15.0",
|
||
"@vitejs/plugin-react": "^5.2.0",
|
||
"@vitest/coverage-v8": "^4.1.6",
|
||
"autoprefixer": "^10.4.20",
|
||
"electron": "^42.3.3",
|
||
"electron-builder": "^26.15.0",
|
||
"electron-vite": "^5.0.0",
|
||
"esbuild": "^0.28.0",
|
||
"eslint": "^8.57.1",
|
||
"eslint-plugin-react": "^7.37.2",
|
||
"eslint-plugin-react-hooks": "^5.0.0",
|
||
"postcss": "^8.4.49",
|
||
"prettier": "^3.4.1",
|
||
"tailwindcss": "^3.4.15",
|
||
"typescript": "^5.6.3",
|
||
"vite": "^7.3.5",
|
||
"vitest": "^4.1.6"
|
||
},
|
||
"build": {
|
||
"appId": "com.anril.exercise-reminder",
|
||
"productName": "Exercise Reminder",
|
||
"directories": {
|
||
"output": "release",
|
||
"buildResources": "resources"
|
||
},
|
||
"files": [
|
||
"out/**/*",
|
||
"resources/**/*"
|
||
],
|
||
"win": {
|
||
"target": [
|
||
{
|
||
"target": "nsis",
|
||
"arch": [
|
||
"x64"
|
||
]
|
||
}
|
||
],
|
||
"icon": "resources/icon.ico"
|
||
},
|
||
"nsis": {
|
||
"oneClick": false,
|
||
"perMachine": false,
|
||
"allowToChangeInstallationDirectory": true,
|
||
"allowElevation": true,
|
||
"createDesktopShortcut": true,
|
||
"createStartMenuShortcut": true,
|
||
"shortcutName": "Exercise Reminder",
|
||
"uninstallDisplayName": "Exercise Reminder",
|
||
"installerLanguages": [
|
||
"ru_RU",
|
||
"en_US"
|
||
],
|
||
"displayLanguageSelector": true,
|
||
"menuCategory": false,
|
||
"runAfterFinish": true,
|
||
"deleteAppDataOnUninstall": false,
|
||
"differentialPackage": true,
|
||
"artifactName": "Exercise-Reminder-Setup-${version}.${ext}"
|
||
},
|
||
"publish": {
|
||
"provider": "generic",
|
||
"url": "https://git.xn--90adajar8af4h.xn--p1ai/AnRil/laude/releases/download/update-channel",
|
||
"channel": "latest"
|
||
}
|
||
}
|
||
}
|