mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 09:46:25 +02:00
- Implemented HolderAnalysisWidget to display holder distribution and concentration risk. - Created LiveTokenDataWidget for real-time market data including price changes and transaction activity. - Added LiveTokenPriceWidget to show current token price and changes over various timeframes. - Developed MarketOverviewWidget to provide a summary of market statistics and token prices. - Introduced TrendingTokensWidget to showcase trending tokens with price changes and volume. - Added TradingSuggestionToolUI for AI-powered trading suggestions with detailed entry, targets, and stop-loss information. - Enhanced settings components for better user configuration options in the SurfSense Browser Extension.
111 lines
No EOL
2.6 KiB
JSON
111 lines
No EOL
2.6 KiB
JSON
{
|
|
"name": "surfsense_browser_extension",
|
|
"displayName": "Surfsense Browser Extension",
|
|
"version": "0.0.12",
|
|
"description": "Extension to collect Browsing History for SurfSense.",
|
|
"author": "https://github.com/MODSetter",
|
|
"pnpm": {
|
|
"overrides": {
|
|
"sharp": "^0.33.5"
|
|
},
|
|
"ignoredBuiltDependencies": [
|
|
"@swc/core",
|
|
"esbuild",
|
|
"lmdb",
|
|
"msgpackr-extract",
|
|
"sharp"
|
|
],
|
|
"onlyBuiltDependencies": [
|
|
"@parcel/watcher"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "plasmo dev",
|
|
"build": "plasmo build && node scripts/fix-build-paths.js",
|
|
"build:raw": "plasmo build",
|
|
"package": "plasmo package"
|
|
},
|
|
"dependencies": {
|
|
"@plasmohq/messaging": "^0.6.2",
|
|
"@plasmohq/storage": "^1.11.0",
|
|
"@radix-ui/react-dialog": "^1.1.2",
|
|
"@radix-ui/react-icons": "^1.3.2",
|
|
"@radix-ui/react-label": "^2.1.7",
|
|
"@radix-ui/react-popover": "^1.1.2",
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
"@radix-ui/react-toast": "^1.2.2",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.0.3",
|
|
"dom-to-semantic-markdown": "^1.2.11",
|
|
"linkedom": "0.1.34",
|
|
"lucide-react": "^0.454.0",
|
|
"postcss-loader": "^8.1.1",
|
|
"radix-ui": "^1.0.1",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-hooks-global-state": "^2.1.0",
|
|
"react-router-dom": "^6.26.1",
|
|
"sharp": "^0.33.5",
|
|
"tailwind-merge": "^2.5.4",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.1.2",
|
|
"@types/chrome": "0.0.258",
|
|
"@types/node": "20.11.5",
|
|
"@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"
|
|
},
|
|
"manifest": {
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"name": "SurfSense",
|
|
"description": "Extension to collect Browsing History for SurfSense.",
|
|
"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",
|
|
"sidePanel",
|
|
"contextMenus"
|
|
]
|
|
} |