-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.64 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "alice-ai-app",
"version": "1.4.4",
"main": "dist-electron/main/index.js",
"description": "Alice AI assistant app",
"author": "pmbstyle",
"license": "MIT",
"private": true,
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:go && vite build && npx electron-builder",
"build:web": "vite build",
"build:go": "node scripts/build-go.js",
"build:go:win": "cd backend && set GOOS=windows&& set GOARCH=amd64&& go build -ldflags=\"-s -w\" -o ../resources/backend/alice-backend.exe",
"build:go:mac": "cd backend && GOOS=darwin GOARCH=amd64 go build -ldflags=\"-s -w\" -o ../resources/backend/alice-backend",
"build:go:linux": "cd backend && GOOS=linux GOARCH=amd64 go build -ldflags=\"-s -w\" -o ../resources/backend/alice-backend",
"setup:dependencies": "node scripts/setup-dependencies.js",
"setup:embeddings": "node scripts/setup-embeddings.js",
"rebuild": "npx electron-rebuild -f -w better-sqlite3,hnswlib-node",
"preview": "vite preview",
"format": "prettier --write .",
"test": "cross-env ROLLUP_SKIP_NODEJS_REQUIRE=1 vitest run"
},
"devDependencies": {
"@electron/rebuild": "^3.6.2",
"@types/dompurify": "^3.2.0",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.5.0",
"axios": "^1.16.1",
"daisyui": "^5.1.26",
"dotenv": "^17.4.2",
"electron": "28.3.3",
"electron-builder": "^24.13.3",
"cross-env": "^10.1.0",
"openai": "^6.33.0",
"pinia": "^3.0.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.4",
"typescript": "^5.4.2",
"vite": "^6.3.4",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-static-copy": "^3.1.1",
"vitest": "^4.0.7",
"vue": "^3.5.26",
"vue-tsc": "^2.0.6"
},
"dependencies": {
"@ricky0123/vad-web": "^0.0.24",
"@tailwindcss/vite": "^4.3.2",
"@types/node-cron": "^3.0.11",
"better-sqlite3": "^12.11.1",
"bufferutil": "^4.1.0",
"dompurify": "^3.3.0",
"electron-log": "^5.4.3",
"electron-updater": "^6.6.2",
"cheerio": "^1.0.0-rc.12",
"googleapis": "^166.0.0",
"groq-sdk": "^1.3.0",
"hnswlib-node": "^3.0.0",
"marked": "^15.0.11",
"mammoth": "^1.12.0",
"node-cron": "^4.2.1",
"path": "^0.12.7",
"pdfjs-dist": "^5.7.284",
"prettier": "^3.7.4",
"turndown": "^7.2.4",
"vue-router": "^5.0.6",
"ws": "^8.19.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.52.5"
}
}