97b48ca3dd
- Add Plotly.js 3D scatter plot showing search results in PCA space - Create shared visualization.py module to avoid code duplication - Pass include_pca parameter through API chain to enable coordinates - Fix OAuth redirects to use /settings/user/astroglobe The visualization shows document embeddings projected to 3D via PCA, with the query point highlighted in red. Uses Viridis colorscale for score visualization, matching the existing vector-viz page. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
987 B
JSON
38 lines
987 B
JSON
{
|
|
"name": "astroglobe",
|
|
"version": "1.0.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"engines": {
|
|
"node": "^22.0.0",
|
|
"npm": "^10.5.0"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite --mode development build",
|
|
"watch": "vite --mode development build --watch",
|
|
"lint": "eslint src",
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css"
|
|
},
|
|
"type": "module",
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"dependencies": {
|
|
"@nextcloud/axios": "^2.5.1",
|
|
"@nextcloud/l10n": "^3.1.0",
|
|
"@nextcloud/router": "^3.0.1",
|
|
"@nextcloud/vue": "^8.29.2",
|
|
"plotly.js-dist-min": "^2.35.3",
|
|
"vue": "^2.7.16",
|
|
"vue-material-design-icons": "^5.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
"@nextcloud/eslint-config": "^8.4.2",
|
|
"@nextcloud/stylelint-config": "^3.1.0",
|
|
"@nextcloud/vite-config": "^1.5.2",
|
|
"terser": "^5.44.1",
|
|
"vite": "^7.1.3"
|
|
}
|
|
}
|