-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.1 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.1 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
{
"name": "knowcompile",
"version": "0.1.0",
"description": "知译 KnowCompile - 把资料编译成你的第二大脑",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite --port 5199 --strictPort",
"build": "npm run build:main && vite build",
"build:main": "tsc -p tsconfig.node.json",
"dev:main": "npm run build:main && cross-env VITE_DEV_SERVER_URL=http://localhost:5199 electron .",
"dev:all": "npm run dev:stop && powershell -NoProfile -Command \"Start-Sleep -Seconds 2\" && concurrently --kill-others \"vite --port 5199 --strictPort\" \"wait-on http://localhost:5199 && npm run dev:main\"",
"dev:stop": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev-stop.ps1",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"pack": "npm run build:main && vite build && electron-builder --dir",
"dist": "npm run build:main && vite build && electron-builder"
},
"license": "MIT",
"author": "ai-dev-dot",
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@huggingface/transformers": "^4.2.0",
"@lancedb/lancedb": "^0.27.2",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"archiver": "^7.0.1",
"better-sqlite3": "^12.9.0",
"chokidar": "^5.0.0",
"cytoscape": "^3.33.3",
"flexsearch": "^0.8.212",
"marked": "^18.0.2",
"openai": "^6.35.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/archiver": "^7.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.3.0",
"electron-builder": "^26.8.1",
"jsdom": "^29.1.1",
"pdf-parse": "^2.4.5",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"wait-on": "^9.0.5"
}
}