-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.24 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": "ppt-cleaner",
"version": "1.0.0",
"type": "module",
"description": "课件清理器 — AI-powered courseware page review and cleanup tool",
"main": "src/main/index.js",
"scripts": {
"dev": "concurrently -k \"npm run dev:renderer\" \"npm run dev:electron\"",
"dev:renderer": "vite --port 5173",
"dev:electron": "wait-on tcp:5173 && electron .",
"build": "vite build && electron-builder",
"build:renderer": "vite build",
"preview": "electron .",
"test": "node --test test/*.test.mjs test/kp/*.test.mjs"
},
"dependencies": {
"katex": "^0.17.0",
"mermaid": "^11.15.0",
"p-limit": "^6.1.0",
"pdf-lib": "^1.17.1",
"pdf-poppler": "^0.2.3",
"pdfjs-dist": "^4.9.155",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.1.0",
"electron": "^42.4.0",
"electron-builder": "^26.15.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.3.4",
"wait-on": "^8.0.1"
},
"allowScripts": {
"electron-winstaller@5.4.0": true,
"esbuild@0.25.12": true,
"electron@42.4.0": true
}
}