├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── docs.yml │ └── publish.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── LICENSE ├── README.md ├── __setups__ └── browser.js ├── docs ├── .gitignore ├── .vitepress │ └── config.mjs ├── [changelogs].md ├── [changelogs].paths.js ├── components │ └── Reviews.vue ├── doc │ ├── index.md │ ├── install.md │ └── setup.md ├── index.md ├── public │ ├── favicon.png │ └── screenshots │ │ ├── auto-start.png │ │ ├── click-add-new-token.png │ │ ├── click-api-button.png │ │ ├── click-connect.png │ │ ├── click-server-configurations.png │ │ ├── click-start-server.png │ │ ├── empty-authorization-tokens.png │ │ ├── enable-api-server-feature.png │ │ ├── enable-api-server.png │ │ ├── enable-auto-start.png │ │ ├── enable-http-apis-server.png │ │ ├── fill-auth-token.png │ │ ├── logseq-copilot-option.png │ │ ├── open-auth-tokens.png │ │ ├── open-logseq-copilot-option.png │ │ ├── open-logseq-settings.png │ │ ├── screenshot.png │ │ ├── setting-auth-token.png │ │ ├── setting-token-on-extension.png │ │ ├── start-api-server.png │ │ ├── success-connected.png │ │ └── success-enable-api-server.png ├── reviews.data.js └── sponsor.md ├── jest.config.js ├── package.json ├── pipeline └── edge-addon-publish.mjs ├── pnpm-lock.yaml ├── src ├── assets │ ├── img │ │ ├── logo-128.png │ │ ├── logo-192.png │ │ └── logo.png │ └── tabler-icons-extension.woff2 ├── browser.ts ├── components │ ├── LogseqBlock.tsx │ ├── LogseqConfig.tsx │ ├── LogseqCopilot.tsx │ ├── LogseqPage.tsx │ ├── LogseqPageContent.tsx │ └── logseq.module.scss ├── config.ts ├── global.d.ts ├── icon.css ├── manifest.json.cjs ├── pages │ ├── background │ │ ├── index.ts │ │ ├── upgrade.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── content │ │ ├── LogseqCopliot.tsx │ │ ├── QuickCapture.tsx │ │ ├── index.module.scss │ │ ├── index.tsx │ │ └── searchingEngines │ │ │ └── searchingEngines.ts │ ├── logseq │ │ ├── client.ts │ │ ├── db │ │ │ ├── client.ts │ │ │ └── service.ts │ │ ├── error.ts │ │ ├── interfaces.ts │ │ ├── normal │ │ │ ├── client.ts │ │ │ └── service.ts │ │ └── tool.ts │ ├── options │ │ ├── Options.module.scss │ │ ├── Options.tsx │ │ ├── components │ │ │ ├── ClipNote.tsx │ │ │ └── Connect.tsx │ │ ├── index.html │ │ ├── index.scss │ │ └── index.tsx │ └── popup │ │ ├── Popup.tsx │ │ ├── index.html │ │ ├── index.module.scss │ │ ├── index.scss │ │ └── index.tsx ├── setupTests.ts ├── types │ └── logseqBlock.ts └── utils.ts ├── tailwind.config.cjs └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm test 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/README.md -------------------------------------------------------------------------------- /__setups__/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/__setups__/browser.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.vitepress/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/.vitepress/config.mjs -------------------------------------------------------------------------------- /docs/[changelogs].md: -------------------------------------------------------------------------------- 1 | # Changelogs 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/[changelogs].paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/[changelogs].paths.js -------------------------------------------------------------------------------- /docs/components/Reviews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/components/Reviews.vue -------------------------------------------------------------------------------- /docs/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/doc/index.md -------------------------------------------------------------------------------- /docs/doc/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/doc/install.md -------------------------------------------------------------------------------- /docs/doc/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/doc/setup.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/screenshots/auto-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/auto-start.png -------------------------------------------------------------------------------- /docs/public/screenshots/click-add-new-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/click-add-new-token.png -------------------------------------------------------------------------------- /docs/public/screenshots/click-api-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/click-api-button.png -------------------------------------------------------------------------------- /docs/public/screenshots/click-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/click-connect.png -------------------------------------------------------------------------------- /docs/public/screenshots/click-server-configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/click-server-configurations.png -------------------------------------------------------------------------------- /docs/public/screenshots/click-start-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/click-start-server.png -------------------------------------------------------------------------------- /docs/public/screenshots/empty-authorization-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/empty-authorization-tokens.png -------------------------------------------------------------------------------- /docs/public/screenshots/enable-api-server-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/enable-api-server-feature.png -------------------------------------------------------------------------------- /docs/public/screenshots/enable-api-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/enable-api-server.png -------------------------------------------------------------------------------- /docs/public/screenshots/enable-auto-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/enable-auto-start.png -------------------------------------------------------------------------------- /docs/public/screenshots/enable-http-apis-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/enable-http-apis-server.png -------------------------------------------------------------------------------- /docs/public/screenshots/fill-auth-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/fill-auth-token.png -------------------------------------------------------------------------------- /docs/public/screenshots/logseq-copilot-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/logseq-copilot-option.png -------------------------------------------------------------------------------- /docs/public/screenshots/open-auth-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/open-auth-tokens.png -------------------------------------------------------------------------------- /docs/public/screenshots/open-logseq-copilot-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/open-logseq-copilot-option.png -------------------------------------------------------------------------------- /docs/public/screenshots/open-logseq-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/open-logseq-settings.png -------------------------------------------------------------------------------- /docs/public/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/screenshot.png -------------------------------------------------------------------------------- /docs/public/screenshots/setting-auth-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/setting-auth-token.png -------------------------------------------------------------------------------- /docs/public/screenshots/setting-token-on-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/setting-token-on-extension.png -------------------------------------------------------------------------------- /docs/public/screenshots/start-api-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/start-api-server.png -------------------------------------------------------------------------------- /docs/public/screenshots/success-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/success-connected.png -------------------------------------------------------------------------------- /docs/public/screenshots/success-enable-api-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/public/screenshots/success-enable-api-server.png -------------------------------------------------------------------------------- /docs/reviews.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/reviews.data.js -------------------------------------------------------------------------------- /docs/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/docs/sponsor.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/package.json -------------------------------------------------------------------------------- /pipeline/edge-addon-publish.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/pipeline/edge-addon-publish.mjs -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/assets/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/assets/img/logo-128.png -------------------------------------------------------------------------------- /src/assets/img/logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/assets/img/logo-192.png -------------------------------------------------------------------------------- /src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/assets/tabler-icons-extension.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/assets/tabler-icons-extension.woff2 -------------------------------------------------------------------------------- /src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/browser.ts -------------------------------------------------------------------------------- /src/components/LogseqBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/components/LogseqBlock.tsx -------------------------------------------------------------------------------- /src/components/LogseqConfig.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/LogseqCopilot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/components/LogseqCopilot.tsx -------------------------------------------------------------------------------- /src/components/LogseqPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/components/LogseqPage.tsx -------------------------------------------------------------------------------- /src/components/LogseqPageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/components/LogseqPageContent.tsx -------------------------------------------------------------------------------- /src/components/logseq.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/components/logseq.module.scss -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/icon.css -------------------------------------------------------------------------------- /src/manifest.json.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/manifest.json.cjs -------------------------------------------------------------------------------- /src/pages/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/background/index.ts -------------------------------------------------------------------------------- /src/pages/background/upgrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/background/upgrade.ts -------------------------------------------------------------------------------- /src/pages/background/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/background/utils.test.ts -------------------------------------------------------------------------------- /src/pages/background/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/background/utils.ts -------------------------------------------------------------------------------- /src/pages/content/LogseqCopliot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/content/LogseqCopliot.tsx -------------------------------------------------------------------------------- /src/pages/content/QuickCapture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/content/QuickCapture.tsx -------------------------------------------------------------------------------- /src/pages/content/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/content/index.module.scss -------------------------------------------------------------------------------- /src/pages/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/content/index.tsx -------------------------------------------------------------------------------- /src/pages/content/searchingEngines/searchingEngines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/content/searchingEngines/searchingEngines.ts -------------------------------------------------------------------------------- /src/pages/logseq/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/client.ts -------------------------------------------------------------------------------- /src/pages/logseq/db/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/db/client.ts -------------------------------------------------------------------------------- /src/pages/logseq/db/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/db/service.ts -------------------------------------------------------------------------------- /src/pages/logseq/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/error.ts -------------------------------------------------------------------------------- /src/pages/logseq/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/interfaces.ts -------------------------------------------------------------------------------- /src/pages/logseq/normal/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/normal/client.ts -------------------------------------------------------------------------------- /src/pages/logseq/normal/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/normal/service.ts -------------------------------------------------------------------------------- /src/pages/logseq/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/logseq/tool.ts -------------------------------------------------------------------------------- /src/pages/options/Options.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/Options.module.scss -------------------------------------------------------------------------------- /src/pages/options/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/Options.tsx -------------------------------------------------------------------------------- /src/pages/options/components/ClipNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/components/ClipNote.tsx -------------------------------------------------------------------------------- /src/pages/options/components/Connect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/components/Connect.tsx -------------------------------------------------------------------------------- /src/pages/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/index.html -------------------------------------------------------------------------------- /src/pages/options/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/index.scss -------------------------------------------------------------------------------- /src/pages/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/options/index.tsx -------------------------------------------------------------------------------- /src/pages/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/popup/Popup.tsx -------------------------------------------------------------------------------- /src/pages/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/popup/index.html -------------------------------------------------------------------------------- /src/pages/popup/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/popup/index.module.scss -------------------------------------------------------------------------------- /src/pages/popup/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/popup/index.scss -------------------------------------------------------------------------------- /src/pages/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/pages/popup/index.tsx -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/types/logseqBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/types/logseqBlock.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EINDEX/logseq-copilot/HEAD/tsconfig.json --------------------------------------------------------------------------------