Whalebird-desktop-client-ma.../package.json

66 lines
2.4 KiB
JSON
Raw Permalink Normal View History

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