-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3 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
{
"name": "flare-player",
"displayName": "Flare Player",
"version": "1.15.0",
"versionCode": 1150,
"versionDate": "2025-03-15",
"ruffleVersionDate": "2025-03-15",
"description": "Flare SWF Flash Player",
"main": "dist/main/index.js",
"private": true,
"homepage": "https://github.com/jooy2/flare",
"author": "jooy2 <jooy2.contact@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jooy2/flare.git"
},
"bugs": {
"url": "https://github.com/jooy2/flare/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",
"lint": "eslint . --ext .js,.ts,.tsx,.jsx src",
"lint:fix": "eslint . --ext .js,.ts,.tsx,.jsx --fix src",
"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": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react-swc": "^4.2.2",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"electron-extension-installer": "^2.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@reduxjs/toolkit": "^2.11.2",
"electron-localshortcut": "^3.2.1",
"electron-store": "^11.0.2",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "14.2.3",
"react-helmet-async": "^2.0.5",
"react-i18next": "^16.5.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.11.0",
"serve-handler": "^6.1.6"
}
}