-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "videochat-llm-app",
"version": "1.0.0",
"description": "Aplikacja VideoChat z LLM, TTS i STT oraz animacją ASCII",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "node build.js",
"build:electron": "electron-builder",
"build:webpack": "webpack --mode production",
"postinstall": "echo 'Skipping postinstall to avoid native module compilation'",
"webpack:dev": "webpack --mode development",
"webpack:watch": "webpack --mode development --watch",
"dev": "webpack serve --mode development",
"clean": "rm -rf dist",
"test": "node run-tests.js",
"test:watch": "jest --watch"
},
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@novnc/novnc": "^1.6.0",
"ascii-art": "^2.8.5",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"electron-log": "^5.4.0",
"express": "^5.1.0",
"playwright": "^1.52.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"socket.io": "^4.8.1",
"ws": "^8.18.2"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.0.0",
"electron": "^36.2.0",
"electron-builder": "^26.0.12",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jsonlint": "^1.6.3",
"style-loader": "^4.0.0",
"webpack": "^5.99.8",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"build": {
"appId": "com.example.videochat-llm",
"productName": "VideoChat LLM",
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "VideoConference",
"extraResources": [
"models/**/*",
"kubernetes/**/*",
"terraform/**/*",
"ansible/**/*"
]
}
}
}