forked from h3poteto/whalebird-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"private": true,
"name": "Whalebird",
"description": "Electron based Fediverse client application",
"version": "6.1.7",
"author": "Akira Fukushima <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:mas": "nextron build --config ./electron-builder.mas.yml",
"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.7.0 --publisher-display-name h3poteto --identity-name 45610h3poteto.Whalebird",
"postinstall": "electron-builder install-app-deps",
"typecheck": "tsc -p renderer --noEmit && tsc -p main --noEmit",
"lint": "eslint renderer --ext ts,tsx",
"thirdparty": "license-checker --production --json > renderer/thirdparty.json",
"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"
},
"dependencies": {
"@emoji-mart/react": "^1.1.1",
"@material-tailwind/react": "^2.1.8",
"blurhash": "^2.0.5",
"dayjs": "^1.11.10",
"dexie": "^4.0.0",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"emoji-mart": "^5.5.2",
"megalodon": "10.0.4",
"parse-link-header": "^2.0.0",
"react-blurhash": "^0.3.0",
"react-hotkeys-hook": "^4.4.1",
"react-icons": "^5.0.0",
"react-intl": "^6.5.1",
"react-virtuoso": "^4.6.2",
"sanitize-html": "^2.11.0",
"system-font-families": "^0.6.0"
},
"devDependencies": {
"@babel/runtime-corejs3": "^7.23.2",
"@electron/notarize": "^2.1.0",
"@types/node": "^20.0.0",
"@types/parse-link-header": "^2.0.3",
"@types/react": "18.2.19",
"@types/sanitize-html": "^2.9.4",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"autoprefixer": "^10.4.16",
"electron": "31",
"electron-builder": "^24.6.4",
"electron-windows-store": "^2.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"next": "^14.0.0",
"nextron": "^9.0.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.71.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]"
}