forked from JefferyHcool/BiliNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 862 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 862 Bytes
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
{
"name": "bilinote",
"version": "1.8.1",
"description": "AI 视频笔记生成工具",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "set PYTHONIOENCODING=utf-8 && set CUDA_MODULE_LOADING=LAZY && cd backend && nodemon --watch .env --exec venv\\Scripts\\python.exe main.py",
"dev:frontend": "cd BillNote_frontend && npm run dev",
"install:all": "npm run install:backend && npm run install:frontend",
"install:backend": "cd backend && pip install -r requirements.txt",
"install:frontend": "cd BillNote_frontend && npm install"
},
"devDependencies": {
"concurrently": "^9.1.2",
"nodemon": "^3.1.14"
},
"keywords": [
"ai",
"video",
"notes",
"bilibili",
"youtube"
],
"author": "JefferyHcool",
"license": "MIT"
}