-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "flaru-player",
"displayName": "Flaru Player",
"version": "1.14.0",
"versionCode": 1140,
"versionDate": "2024-11-22",
"ruffleVersionDate": "2024-11-22",
"description": "Flaru SWF Flash Player",
"main": "dist/main/index.js",
"private": true,
"homepage": "https://github.com/jooy2/flaru",
"author": "jooy2 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jooy2/flaru.git"
},
"bugs": {
"url": "https://github.com/jooy2/flaru/issues"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"dev:debug": "vite -d",
"dev:debug:force": "vite -d --force",
"build": "npm run build:pre && electron-builder",
"build:all": "npm run build:pre && electron-builder -wml",
"build:pre": "tsc && vite build",
"build:dir": "npm run build:pre && electron-builder --dir",
"build:mac": "npm run build:pre && electron-builder --mac",
"build:win": "npm run build:pre && electron-builder --windows",
"build:linux": "npm run build:pre && electron-builder --linux",
"format": "prettier .",
"format:fix": "prettier . --write",
"test": "npm run build:pre && playwright test",
"test:linux": "npm run build:pre && xvfb-run --auto-servernum --server-args='-screen 0, 1280x960x24' -- playwright test"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"electron": "32.2.5",
"electron-builder": "^25.1.8",
"electron-extension-installer": "^1.2.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"playwright": "^1.49.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.1.8",
"@reduxjs/toolkit": "^2.3.0",
"electron-localshortcut": "^3.2.1",
"electron-store": "^10.0.0",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^3.0.1",
"million": "^3.1.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "14.2.3",
"react-helmet": "^6.1.0",
"react-i18next": "^15.1.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.28.0",
"serve-handler": "^6.1.6"
},
"eslintConfig": {
"extends": "react-app"
}
}