Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/isomorphic copilot for extension #47

Merged
merged 9 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions extension-wxt/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.output
stats.html
stats-*.json
.wxt
web-ext.config.ts

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions extension-wxt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# WXT + React

This template should help get you started developing with React in WXT.
82 changes: 82 additions & 0 deletions extension-wxt/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
{
"name": "wxt-starter",
"description": "manifest.json description",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@arco-design/web-react": "^2.62.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@arco-themes/react-refly-ai": "0.0.2",
"@sentry/cli": "^2.31.2",
"@sentry/react": "^7.113.0",
"@microsoft/fetch-event-source": "^2.0.1",
"@mozilla/readability": "^0.5.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-popover": "^1.0.7",
"@redux-devtools/extension": "^3.3.0",
"@types/is-hotkey": "~0.1.7",
"@types/lodash.throttle": "^4.1.9",
"@types/md5": "^2.3.2",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.19",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"copy-to-clipboard": "~3.3.3",
"dayjs": "~1.11.7",
"get-xpath": "^3.1.0",
"hotkeys-js": "~3.10.2",
"i18next": "^23.11.2",
"is-hotkey": "~0.2.0",
"katex": "0.15.6",
"lodash.throttle": "^4.1.1",
"md5": "^2.3.0",
"node-html-parser": "^6.1.13",
"p-retry": "^6.2.0",
"p-timeout": "^6.1.2",
"react-draggable": "~4.4.5",
"react-i18next": "^14.1.0",
"react-infinite-scroll-component": "~6.1.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.22.1",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.5.0",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.1",
"xpath-to-selector": "^1.1.3",
"zustand": "^4.5.1",
"@tailwindcss/forms": "^0.5.3"
},
"devDependencies": {
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.3.3",
"wxt": "^0.18.0",
"@arco-plugins/vite-react": "^1.3.3",
"less": "^4.2.0",
"postcss": "^8.4.21",
"sass": "^1.71.1",
"tailwindcss": "^3.2.6",
"tailwind-merge": "^2.2.2",
"@types/chrome": "0.0.227",
"@types/node": "18.15.11",
"prettier": "3.2.4"
}
}
Loading
Loading