-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"name": "youtube-virtual-manager",
"version": "1.0.0",
"description": "AI-powered YouTube Channel Optimizer that helps manage, organize and optimize your channel to increase traffic and engagement",
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:electron\" \"npm run dev:react\"",
"dev:electron": "tsc -p tsconfig.electron.json && electron .",
"dev:react": "vite",
"build": "npm run build:react && npm run build:electron",
"build:electron": "tsc -p tsconfig.electron.json",
"build:react": "vite build",
"package": "electron-builder build --mac --win --linux --publish never",
"package:dir": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pH-7/YouTube-Virtual-Manager.git"
},
"keywords": [
"youtube",
"channel-optimizer",
"ai",
"electron",
"typescript",
"react"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pH-7/YouTube-Virtual-Manager/issues"
},
"homepage": "https://github.com/pH-7/YouTube-Virtual-Manager#readme",
"devDependencies": {
"@types/node": "^22.13.10",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"electron": "^35.0.1",
"electron-builder": "^25.1.8",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^6.2.1"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"axios": "^1.8.2",
"chart.js": "^4.4.8",
"dotenv": "^16.4.7",
"electron-store": "^10.0.1",
"google-auth-library": "^9.15.1",
"googleapis": "^146.0.0",
"openai": "^4.86.2",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.3.0",
"tailwindcss": "^4.0.12"
}
}