chore: merge upstream with local feature additions

- Merged dexscreener connector, composio connectors, crypto realtime tools from upstream
- Kept local additions: dropbox/onedrive connectors, memory routes, model_list routes, RefreshToken model
- Resolved frontend conflicts: kept tool UIs from both sides
- Accepted upstream lock files (uv.lock, pnpm-lock.yaml)
This commit is contained in:
Vonic 2026-04-13 23:31:52 +07:00
commit 6e86cd7e8a
803 changed files with 152168 additions and 14005 deletions

View file

@ -4,18 +4,25 @@
"version": "0.0.15",
"description": "Extension to collect Browsing History for SurfSense.",
"author": "https://github.com/MODSetter",
"engines": {
"node": ">=18.0.0 <23.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"overrides": {
"sharp": "^0.33.5"
}
},
"ignoredBuiltDependencies": [
"@swc/core",
"esbuild",
"lmdb",
"msgpackr-extract",
"sharp"
],
"onlyBuiltDependencies": [
"@parcel/watcher"
]
},
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build": "plasmo build && node scripts/fix-build-paths.js",
"build:raw": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
@ -33,7 +40,6 @@
"dom-to-semantic-markdown": "^1.2.11",
"linkedom": "0.1.34",
"lucide-react": "^0.454.0",
"plasmo": "0.90.5",
"postcss-loader": "^8.1.1",
"radix-ui": "^1.0.1",
"react": "18.2.0",
@ -51,6 +57,7 @@
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.20",
"plasmo": "0.90.5",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "5.3.3"
@ -61,12 +68,44 @@
],
"name": "SurfSense",
"description": "Extension to collect Browsing History for SurfSense.",
"version": "0.0.3"
"version": "0.0.3",
"commands": {
"analyze-token": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"mac": "Command+Shift+A"
},
"description": "Analyze current token"
},
"add-watchlist": {
"suggested_key": {
"default": "Ctrl+Shift+W",
"mac": "Command+Shift+W"
},
"description": "Add token to watchlist"
},
"capture-page": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Capture current page"
},
"show-portfolio": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
},
"description": "Show portfolio"
}
}
},
"permissions": [
"storage",
"scripting",
"unlimitedStorage",
"activeTab"
"activeTab",
"sidePanel",
"contextMenus"
]
}
}