-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.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
{
"name": "pelec",
"productName": "pelec",
"version": "1.0.0",
"description": "My Electron application description",
"main": ".vite/build/main.js",
"private": true,
"packageManager": "bun@1.3.3",
"engines": {
"bun": ">=1.3.3 <2"
},
"scripts": {
"start": "bun scripts/run-forge.js start",
"rebuild:start": "bun scripts/rebuild-start.js",
"package": "bun scripts/run-forge.js package",
"appimage": "bun scripts/build-appimage.js",
"appimage:fresh": "bun scripts/build-appimage.js --fresh",
"make": "bun scripts/run-forge.js make",
"publish": "bun scripts/run-forge.js publish",
"lint": "bun x eslint --ext .ts,.tsx .",
"test": "vitest run"
},
"keywords": [],
"author": {
"name": "Sokpiseth Thin",
"email": "sokpiseth.thin@gmail.com"
},
"license": "MIT",
"trustedDependencies": [
"electron",
"electron-winstaller",
"esbuild",
"ffmpeg-static",
"tdl"
],
"overrides": {
"@electron/node-gyp": "github:electron/node-gyp#06b29aafb7708acef8b3669835c8a7857ebc92d2"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.3.4",
"electron": "40.7.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"jsdom": "^29.0.1",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vitest": "^4.1.2"
},
"dependencies": {
"dotenv": "^17.3.1",
"electron-squirrel-startup": "^1.0.1",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"instagram-private-api": "^1.46.1",
"prebuilt-tdlib": "^0.1008062.0",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tdl": "^8.0.2"
}
}