From 2656eaad28694bc1a6182ac33664a7c69baf7a57 Mon Sep 17 00:00:00 2001 From: Naz Date: Mon, 20 Jan 2025 18:59:47 +0100 Subject: [PATCH] add deepseek --- recipes/deepseek/icon.svg | 1 + recipes/deepseek/index.js | 1 + recipes/deepseek/package.json | 9 +++++++++ recipes/deepseek/webview.js | 9 +++++++++ 4 files changed, 20 insertions(+) create mode 100644 recipes/deepseek/icon.svg create mode 100644 recipes/deepseek/index.js create mode 100644 recipes/deepseek/package.json create mode 100644 recipes/deepseek/webview.js diff --git a/recipes/deepseek/icon.svg b/recipes/deepseek/icon.svg new file mode 100644 index 000000000..3fc230240 --- /dev/null +++ b/recipes/deepseek/icon.svg @@ -0,0 +1 @@ +DeepSeek \ No newline at end of file diff --git a/recipes/deepseek/index.js b/recipes/deepseek/index.js new file mode 100644 index 000000000..dd41f7287 --- /dev/null +++ b/recipes/deepseek/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/deepseek/package.json b/recipes/deepseek/package.json new file mode 100644 index 000000000..2e97eab3f --- /dev/null +++ b/recipes/deepseek/package.json @@ -0,0 +1,9 @@ +{ + "id": "deepseek", + "name": "DeepSeek", + "version": "1.0.1", + "license": "MIT", + "config": { + "serviceURL": "https://chat.deepseek.com/" + } +} diff --git a/recipes/deepseek/webview.js b/recipes/deepseek/webview.js new file mode 100644 index 000000000..11192196b --- /dev/null +++ b/recipes/deepseek/webview.js @@ -0,0 +1,9 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +};