-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.88 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.88 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ricecall",
"version": "0.3.19",
"private": false,
"description": "Ricecall",
"author": {
"name": "RiceCall Group",
"email": "support@ricecall.com",
"url": "https://ricecall.com"
},
"main": "./build/src/electron/main.js",
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"next:dev": "next dev --turbopack",
"next:start": "npx serve@latest out",
"next:build": "next build",
"next:export": "next export",
"next:lint": "next lint",
"electron:prep": "tsc -p tsconfig.electron.json && resolve-tspaths -p tsconfig.electron.json --src . --out build && ts-add-js-extension --dir build",
"electron:dev": "electron -r tsx src/electron/main.ts --dev --no-sandbox",
"electron:start": "electron -r tsx src/electron/main.ts",
"electron:build": "npm run electron:prep && electron-builder",
"electron:build:deb": "npm run electron:prep && electron-builder --linux deb",
"electron:build:dmg": "npm run electron:prep && electron-builder --mac dmg",
"dev": "concurrently \"npm run next:dev\" \"npm run electron:dev\"",
"start": "concurrently \"npm run next:start\" \"npm run electron:start\"",
"build": "npm run next:build && npm run electron:build",
"build:deb": "npm run next:build && npm run electron:build:deb",
"build:dmg": "npm run next:build && npm run electron:build:dmg",
"build:action": "npm run next:build && npm run electron:prep",
"format": "prettier --write src/**/*.{ts,tsx,js,jsx,css}",
"format:css": "stylelint --fix \"src/**/*.css\""
},
"dependencies": {
"@crowdin/ota-client": "^2.0.1",
"@reduxjs/toolkit": "^2.11.2",
"@tiptap/core": "^3.2.0",
"@tiptap/extension-color": "^3.2.0",
"@tiptap/extension-font-family": "^3.4.5",
"@tiptap/extension-link": "^3.2.0",
"@tiptap/extension-mention": "^3.2.0",
"@tiptap/extension-placeholder": "^3.7.2",
"@tiptap/extension-text-align": "^3.2.0",
"@tiptap/extension-text-style": "^3.4.5",
"@tiptap/pm": "^3.2.0",
"@tiptap/react": "^3.2.0",
"@tiptap/starter-kit": "^3.2.0",
"discord-rpc": "^4.0.1",
"dompurify": "^3.2.7",
"dotenv": "^16.5.0",
"dotenv-expand": "^12.0.3",
"electron-audio-loopback-josh": "^1.0.7",
"electron-log": "^5.4.3",
"electron-serve": "^2.1.1",
"electron-store": "^10.0.1",
"electron-updater": "^6.6.2",
"emoji.json": "^15.1.0",
"ffmpeg-static": "^5.3.0",
"fluent-ffmpeg": "^2.1.3",
"font-list": "^1.5.1",
"i18next": "^25.2.1",
"mediasoup-client": "^3.12.5",
"net": "^1.0.2",
"networkdiagnosistool": "^1.0.4",
"next": "^15.3.2",
"npm": "^11.7.0",
"path": "^0.12.7",
"react": "^19.0.0",
"react-color": "^2.19.3",
"react-dom": "^19",
"react-i18next": "^15.5.3",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"socket.io-client": "^4.8.1",
"twemoji": "^14.0.2",
"zod": "^4.1.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/discord-rpc": "^4.0.9",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node": "^20",
"@types/react": "^19.1.3",
"@types/react-color": "^3.0.13",
"@types/react-dom": "^19.2.3",
"concurrently": "^8.2.2",
"dotenv-cli": "^8.0.0",
"electron": "^36.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"postcss": "^8",
"prettier": "^3.6.2",
"resolve-tspaths": "^0.8.23",
"stylelint": "^16.26.1",
"stylelint-config-recess-order": "^7.4.0",
"stylelint-config-standard": "^39.0.1",
"stylelint-order": "^7.0.0",
"ts-add-js-extension": "^1.6.6",
"tsx": "^4.19.4",
"typescript": "5.8.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}