hydra/package.json

121 lines
4.0 KiB
JSON
Raw Normal View History

2024-04-21 08:26:29 +03:00
{
2024-05-21 00:53:26 +03:00
"name": "hydralauncher",
"version": "3.1.2",
2024-04-25 22:54:38 +03:00
"description": "Hydra",
2024-04-21 08:26:29 +03:00
"main": "./out/main/index.js",
2024-04-25 07:52:19 +03:00
"author": "Los Broxas",
2024-04-18 10:46:06 +03:00
"repository": {
2024-04-25 07:52:19 +03:00
"type": "git",
"url": "https://github.com/hydralauncher/hydra.git"
2024-04-18 10:46:06 +03:00
},
2024-04-21 08:26:29 +03:00
"type": "module",
"engines": {
2024-06-27 17:21:16 +03:00
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
},
2024-04-21 08:26:29 +03:00
"scripts": {
"format": "prettier --write .",
2024-05-16 03:58:41 +03:00
"format-check": "prettier --check .",
2024-04-21 08:26:29 +03:00
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
2024-04-24 12:29:24 +03:00
"build": "npm run typecheck && electron-vite build",
2024-12-10 01:54:58 +03:00
"postinstall": "electron-builder install-app-deps && node ./scripts/postinstall.cjs",
2024-04-21 08:26:29 +03:00
"build:unpack": "npm run build && electron-builder --dir",
2024-04-29 13:13:11 +03:00
"build:win": "electron-vite build && electron-builder --win",
2024-04-21 08:26:29 +03:00
"build:mac": "electron-vite build && electron-builder --mac",
2024-05-13 02:49:42 +03:00
"build:linux": "electron-vite build && electron-builder --linux",
"prepare": "husky",
2024-08-30 20:06:53 +03:00
"knex:migrate:make": "knex --knexfile src/main/knexfile.ts migrate:make --esm"
2024-04-21 08:26:29 +03:00
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
2024-12-13 22:47:32 +03:00
"@fontsource/noto-sans": "^5.1.0",
"@hookform/resolvers": "^3.9.1",
2024-04-21 08:26:29 +03:00
"@primer/octicons-react": "^19.9.0",
2024-11-12 10:10:19 +03:00
"@radix-ui/react-dropdown-menu": "^2.1.2",
2024-04-21 08:26:29 +03:00
"@reduxjs/toolkit": "^2.2.3",
"@vanilla-extract/css": "^1.14.2",
2024-12-13 22:47:32 +03:00
"@vanilla-extract/dynamic": "^2.1.2",
2024-04-21 08:26:29 +03:00
"@vanilla-extract/recipes": "^0.5.2",
2024-05-05 23:18:06 +03:00
"auto-launch": "^5.0.6",
2024-12-13 22:47:32 +03:00
"axios": "^1.7.9",
"better-sqlite3": "^11.7.0",
2024-04-21 08:26:29 +03:00
"check-disk-space": "^3.4.0",
"classnames": "^2.5.1",
2024-05-06 18:51:55 +03:00
"color": "^4.2.3",
2024-04-21 08:26:29 +03:00
"color.js": "^1.2.0",
2024-06-05 22:42:45 +03:00
"create-desktop-shortcuts": "^1.11.0",
2024-04-21 08:26:29 +03:00
"date-fns": "^3.6.0",
2024-12-13 22:47:32 +03:00
"dexie": "^4.0.10",
"electron-log": "^5.2.4",
2024-10-15 17:56:53 +03:00
"electron-updater": "^6.3.9",
"file-type": "^19.6.0",
2024-04-21 08:26:29 +03:00
"i18next": "^23.11.2",
"i18next-browser-languagedetector": "^7.2.1",
"jsdom": "^24.0.0",
2024-06-21 04:37:49 +03:00
"jsonwebtoken": "^9.0.2",
2024-08-23 05:50:35 +03:00
"knex": "^3.1.0",
2024-04-21 08:26:29 +03:00
"lodash-es": "^4.17.21",
2024-10-15 17:56:53 +03:00
"parse-torrent": "^11.0.17",
2024-10-30 05:47:05 +03:00
"piscina": "^4.7.0",
2024-12-21 00:28:51 +03:00
"rc-virtual-list": "^3.16.1",
"react-hook-form": "^7.53.0",
2024-04-21 08:26:29 +03:00
"react-i18next": "^14.1.0",
"react-loading-skeleton": "^3.4.0",
"react-redux": "^9.1.1",
"react-router-dom": "^6.22.3",
2024-10-30 05:47:05 +03:00
"sound-play": "^1.1.0",
"sudo-prompt": "^9.2.1",
2024-10-05 04:21:41 +03:00
"tar": "^7.4.3",
2024-04-21 08:26:29 +03:00
"typeorm": "^0.3.20",
2024-12-13 22:47:32 +03:00
"user-agents": "^1.1.387",
"yaml": "^2.6.1",
"yup": "^1.5.0",
"zod": "^3.24.1"
2024-04-21 08:26:29 +03:00
},
"devDependencies": {
2024-12-10 01:54:58 +03:00
"@aws-sdk/client-s3": "^3.705.0",
2024-12-13 22:47:32 +03:00
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
2024-04-21 08:26:29 +03:00
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
2024-10-30 04:17:45 +03:00
"@electron-toolkit/eslint-config-ts": "^2.0.0",
2024-04-21 08:26:29 +03:00
"@electron-toolkit/tsconfig": "^1.0.1",
"@swc/core": "^1.4.16",
2024-05-06 02:11:12 +03:00
"@types/auto-launch": "^5.0.5",
2024-06-20 02:41:35 +03:00
"@types/color": "^3.0.6",
2024-09-25 21:37:28 +03:00
"@types/folder-hash": "^4.0.4",
2024-12-13 22:47:32 +03:00
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.7",
2024-04-21 08:26:29 +03:00
"@types/lodash-es": "^4.17.12",
2024-04-25 07:52:19 +03:00
"@types/node": "^20.12.7",
2024-04-29 13:01:34 +03:00
"@types/parse-torrent": "^5.8.7",
2024-04-21 08:26:29 +03:00
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
2024-10-30 05:47:05 +03:00
"@types/sound-play": "^1.1.3",
2024-06-03 04:12:05 +03:00
"@types/user-agents": "^1.0.4",
2024-04-21 08:26:29 +03:00
"@vanilla-extract/vite-plugin": "^4.0.7",
"@vitejs/plugin-react": "^4.2.1",
2024-12-13 22:47:32 +03:00
"electron": "^31.7.6",
2024-10-15 17:56:53 +03:00
"electron-builder": "^25.1.8",
2024-04-21 08:26:29 +03:00
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
2024-12-13 22:47:32 +03:00
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
2024-04-25 22:54:38 +03:00
"eslint-plugin-react-hooks": "^4.6.0",
2024-12-13 22:47:32 +03:00
"husky": "^9.1.7",
"prettier": "^3.4.2",
2024-04-21 08:26:29 +03:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-11-02 18:27:27 +03:00
"sass-embedded": "^1.80.6",
2024-08-30 20:06:53 +03:00
"ts-node": "^10.9.2",
2024-04-21 08:26:29 +03:00
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-svgr": "^4.2.0"
}
}