1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-23 22:21:01 +01:00

66 lines
2.4 KiB
JSON
Raw Normal View History

2018-03-07 22:28:48 +09:00
{
2023-11-02 01:20:27 +09:00
"private": true,
2024-01-13 16:59:01 +09:00
"name": "Whalebird",
2023-11-02 01:20:27 +09:00
"description": "Electron based Fediverse client application",
2024-09-05 00:48:13 +09:00
"version": "6.1.4",
2023-11-02 01:20:27 +09:00
"author": "Akira Fukushima <h3.poteto@gmail.com>",
"main": "app/background.js",
2018-03-07 22:28:48 +09:00
"scripts": {
2023-11-02 01:20:27 +09:00
"dev": "nextron",
"build": "nextron build",
2023-12-31 23:19:36 +09:00
"build:mas": "nextron build --config ./electron-builder.mas.yml",
2024-09-06 00:15:18 +09:00
"build:appx2": "nextron build --win --x64 && electron-windows-store --assets ./resources/icons --input-directory ./dist/win-unpacked --output-directory ./dist/appx --package-name Whalebird --package-display-name Whalebird --package-version 6.1.4.0 --publisher-display-name h3poteto --identity-name 45610h3poteto.Whalebird",
2023-11-07 00:57:47 +09:00
"postinstall": "electron-builder install-app-deps",
2023-12-02 16:30:28 +09:00
"typecheck": "tsc -p renderer --noEmit && tsc -p main --noEmit",
2023-12-03 21:23:55 +09:00
"lint": "eslint renderer --ext ts,tsx",
2024-03-07 22:19:00 +09:00
"thirdparty": "license-checker --production --json > renderer/thirdparty.json",
2024-03-08 21:05:59 +09:00
"dev:web": "NEXT_PUBLIC_CLIENT_ENV=browser next dev renderer",
"build:web": "NEXT_PUBLIC_CLIENT_ENV=browser next build renderer",
"start:web": "cd renderer && NEXT_PUBLIC_CLIENT_ENV=browser next start"
2018-12-29 00:04:17 +09:00
},
2018-03-07 22:28:48 +09:00
"dependencies": {
2023-12-10 23:55:41 +09:00
"@emoji-mart/react": "^1.1.1",
"@material-tailwind/react": "^2.1.8",
2023-11-27 00:54:29 +09:00
"blurhash": "^2.0.5",
2023-11-03 20:37:40 +09:00
"dayjs": "^1.11.10",
2024-04-09 15:18:12 +00:00
"dexie": "^4.0.0",
"electron-serve": "^1.1.0",
2023-11-02 01:20:27 +09:00
"electron-store": "^8.1.0",
2023-12-10 23:55:41 +09:00
"emoji-mart": "^5.5.2",
2024-09-04 15:45:24 +00:00
"megalodon": "10.0.3",
"parse-link-header": "^2.0.0",
2023-11-27 00:54:29 +09:00
"react-blurhash": "^0.3.0",
"react-hotkeys-hook": "^4.4.1",
2024-01-13 08:56:18 +00:00
"react-icons": "^5.0.0",
2023-11-04 15:32:37 +09:00
"react-intl": "^6.5.1",
2023-11-09 23:29:10 +09:00
"react-virtuoso": "^4.6.2",
"sanitize-html": "^2.11.0"
2018-03-07 22:28:48 +09:00
},
"devDependencies": {
2023-11-02 01:20:27 +09:00
"@babel/runtime-corejs3": "^7.23.2",
2023-11-07 00:48:07 +09:00
"@electron/notarize": "^2.1.0",
2023-12-02 07:03:33 +00:00
"@types/node": "^20.0.0",
2024-03-09 15:01:44 +09:00
"@types/parse-link-header": "^2.0.3",
"@types/react": "18.2.19",
2023-11-09 23:29:10 +09:00
"@types/sanitize-html": "^2.9.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
2023-11-02 01:20:27 +09:00
"autoprefixer": "^10.4.16",
2024-07-10 15:38:00 +00:00
"electron": "31",
2023-11-02 01:20:27 +09:00
"electron-builder": "^24.6.4",
2024-03-01 00:17:08 +09:00
"electron-windows-store": "^2.1.0",
2024-05-27 15:42:48 +00:00
"eslint": "^9.0.0",
2023-12-02 16:30:28 +09:00
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
2024-07-11 00:20:12 +09:00
"next": "^14.0.0",
2024-06-16 09:56:17 +00:00
"nextron": "^9.0.0",
2023-11-02 01:20:27 +09:00
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-03-09 18:26:43 +09:00
"sass": "^1.71.1",
2023-11-02 01:20:27 +09:00
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
2023-12-30 19:15:09 +09:00
},
2024-08-30 22:37:45 +09:00
"packageManager": "yarn@4.4.1"
2018-03-07 22:28:48 +09:00
}