-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.99 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
{
"name": "faces-ai",
"productName": "Faces AI",
"version": "1.0.0",
"description": "Faces AI, The App That Gives Your AI A Face",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently \"vite\" \"wait-on tcp:5199 && electron .\"",
"build": "vite build",
"start": "electron .",
"build:python": "python build_python.py",
"build:python:yolo": "python build_python.py yolo_tracker",
"build:python:kokoro": "python build_python.py kokoro_tts",
"build:python:whisper": "python build_python.py local_whisper",
"build:python:piper": "python build_python.py piper_tts",
"build:all": "npm run build:python && npm run build && npm run package:win",
"package": "vite build && electron-builder --dir --publish never",
"package:win": "vite build && electron-builder --win --dir --publish never",
"package:mac": "vite build && electron-builder --mac --dir --publish never",
"package:linux": "vite build && electron-builder --linux --dir --publish never",
"package:all": "vite build && electron-builder --win --mac --linux --dir --publish never"
},
"keywords": [],
"author": "",
"license": "ISC",
"build": {
"appId": "com.facesai.app",
"productName": "Faces AI",
"directories": {
"output": "C:/Users/maxwi/OneDrive/Desktop/Coding Projects/Faces/builds"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*",
"python/**/*",
"!python/__pycache__/**/*",
"!python-dist/**/*",
"!python-build/**/*"
],
"extraResources": [
{
"from": "python-dist/",
"to": "python/",
"filter": ["**/*"]
},
{
"from": "yolov11n.pt",
"to": "models/yolov11n.pt"
},
{
"from": "yolov8n.pt",
"to": "models/yolov8n.pt"
}
],
"asar": true,
"asarUnpack": [
"node_modules/ws/**/*",
"node_modules/electron-store/**/*"
],
"win": {
"target": "dir",
"icon": "build/icon.ico",
"sign": false,
"signAndEditExecutable": false
},
"mac": {
"target": "dir",
"icon": "build/icon.png"
},
"linux": {
"target": "dir",
"icon": "build/icon.png"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"@google/generative-ai": "^0.21.0",
"@mantine/core": "^7.14.1",
"@mantine/hooks": "^7.14.1",
"@react-three/drei": "^9.92.7",
"@react-three/fiber": "^8.15.12",
"@tabler/icons-react": "^3.22.0",
"electron-store": "^8.1.0",
"fluent-ffmpeg": "^2.1.3",
"openai": "^4.72.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"three": "^0.160.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"rcedit": "^5.0.2",
"vite": "^5.4.11",
"wait-on": "^8.0.5"
}
}