-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "electron-video-player",
"version": "2.0.0",
"description": "Electron + C++ Native Addon 视频播放器 (FFmpeg + OpenGL)",
"main": "main.js",
"scripts": {
"build": "cmake -B build -S . -DBUILD_TESTS=OFF && cmake --build build --config Release",
"rebuild": "rm -rf build && npm run build",
"start": "electron .",
"postinstall": "npm run build && electron-rebuild -o better-sqlite3",
"build:css": "tailwindcss -i chat/input.css -o chat/dist/output.css --minify",
"watch:css": "tailwindcss -i chat/input.css -o chat/dist/output.css --watch"
},
"dependencies": {
"@electron/remote": "^2.1.0",
"@langchain/core": "^1.1.33",
"@langchain/langgraph": "^1.2.3",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.1",
"@langchain/openai": "^1.3.0",
"@simonwep/pickr": "^1.9.1",
"better-sqlite3": "^12.8.0",
"langchain": "^1.2.35",
"marked": "^9.1.6",
"node-addon-api": "^7.0.0",
"node-api-headers": "^1.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"cmake-js": "^7.2.1",
"electron": "^28.3.3",
"electron-rebuild": "^3.2.9",
"tailwindcss": "^3.4.19"
},
"keywords": [
"electron",
"video-player",
"ffmpeg",
"opengl",
"native-addon",
"cpp"
],
"author": "",
"license": "MIT"
}