mirror of
https://github.com/logseq/logseq.git
synced 2026-04-24 14:14:55 +00:00
chore(whiteboard): update dependencies
This commit is contained in:
committed by
Gabriel Horner
parent
6f5a6dcbf7
commit
91aba5c499
@@ -10,37 +10,37 @@
|
||||
"dev:vite": "tsup --watch --sourcemap inline"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@radix-ui/react-context-menu": "^1.0.0",
|
||||
"@radix-ui/react-dropdown-menu": "^1.0.0",
|
||||
"@radix-ui/react-context-menu": "^2.0.1",
|
||||
"@radix-ui/react-dropdown-menu": "^2.0.1",
|
||||
"@radix-ui/react-popover": "^1.0.0",
|
||||
"@radix-ui/react-select": "^1.0.0",
|
||||
"@radix-ui/react-separator": "^1.0.0",
|
||||
"@radix-ui/react-select": "^1.1.2",
|
||||
"@radix-ui/react-separator": "^1.0.1",
|
||||
"@radix-ui/react-slider": "^1.1.0",
|
||||
"@radix-ui/react-switch": "^1.0.0",
|
||||
"@radix-ui/react-toggle": "^1.0.0",
|
||||
"@radix-ui/react-toggle-group": "^1.0.0",
|
||||
"@radix-ui/react-switch": "^1.0.1",
|
||||
"@radix-ui/react-toggle": "^1.0.1",
|
||||
"@radix-ui/react-toggle-group": "^1.0.1",
|
||||
"@tldraw/core": "2.0.0-alpha.1",
|
||||
"@tldraw/react": "2.0.0-alpha.1",
|
||||
"@tldraw/vec": "2.0.0-alpha.1",
|
||||
"@types/node": "^17.0.42",
|
||||
"@types/react": "^17.0.0",
|
||||
"@types/react-dom": "^17.0.0",
|
||||
"autoprefixer": "^10.4.7",
|
||||
"concurrently": "^7.2.1",
|
||||
"esbuild": "^0.15.10",
|
||||
"mobx": "^6.6.2",
|
||||
"autoprefixer": "^10.4.13",
|
||||
"concurrently": "^7.5.0",
|
||||
"esbuild": "^0.15.14",
|
||||
"mobx": "^6.7.0",
|
||||
"mobx-react-lite": "^3.4.0",
|
||||
"perfect-freehand": "^1.2.0",
|
||||
"polished": "^4.0.0",
|
||||
"postcss": "^8.4.17",
|
||||
"postcss": "^8.4.19",
|
||||
"react": "^17.0.0",
|
||||
"react-dom": "^17.0.0",
|
||||
"react-virtuoso": "^3.1.0",
|
||||
"react-virtuoso": "^3.1.3",
|
||||
"rimraf": "3.0.2",
|
||||
"shadow-cljs": "^2.19.5",
|
||||
"tsup": "^6.2.3",
|
||||
"typescript": "^4.8.2",
|
||||
"zx": "^7.1.0"
|
||||
"shadow-cljs": "^2.20.11",
|
||||
"tsup": "^6.5.0",
|
||||
"typescript": "^4.9.3",
|
||||
"zx": "^7.1.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
||||
|
||||
@@ -3,18 +3,26 @@
|
||||
"private": true,
|
||||
"version": "0.0.0-dev",
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-decorators": "^7.18.2",
|
||||
"@babel/plugin-proposal-decorators": "^7.20.2",
|
||||
"@swc/core": "^1.3.17",
|
||||
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
||||
"@typescript-eslint/parser": "^5.43.0",
|
||||
"@vitejs/plugin-basic-ssl": "^0.1.2",
|
||||
"autoprefixer": "^10.4.7",
|
||||
"postcss": "^8.4.17",
|
||||
"tailwindcss": "^3.0.24",
|
||||
"vite": "^3.1.6"
|
||||
"autoprefixer": "^10.4.13",
|
||||
"eslint": "^8.27.0",
|
||||
"postcss": "^8.4.19",
|
||||
"prettier-plugin-jsdoc": "^0.4.2",
|
||||
"tailwindcss": "^3.2.4",
|
||||
"tslib": "^2.4.1",
|
||||
"typescript": "^4.9.3",
|
||||
"unplugin-swc": "^1.3.2",
|
||||
"vite": "^3.2.4"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vitejs/plugin-react": "^2.1.0",
|
||||
"@vitejs/plugin-react": "^2.2.0",
|
||||
"react": "^17",
|
||||
"react-dom": "^17"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import react from '@vitejs/plugin-react'
|
||||
import basicSsl from '@vitejs/plugin-basic-ssl'
|
||||
// import swc from 'unplugin-swc'
|
||||
// import basicSsl from '@vitejs/plugin-basic-ssl'
|
||||
import path from 'path'
|
||||
import { defineConfig } from 'vite'
|
||||
|
||||
@@ -12,6 +13,23 @@ const bases = {
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
// swc.vite({
|
||||
// jsc: {
|
||||
// target: 'es2022',
|
||||
// parser: {
|
||||
// decorators: true,
|
||||
// tsx: true,
|
||||
// jsx: true,
|
||||
// },
|
||||
// transform: {
|
||||
// legacyDecorator: true,
|
||||
// react: {
|
||||
// refresh: true,
|
||||
// runtime: 'automatic',
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }),
|
||||
react({
|
||||
babel: {
|
||||
parserOpts: {
|
||||
|
||||
@@ -37,22 +37,22 @@
|
||||
"dependencies": {
|
||||
"@tldraw/intersect": "2.0.0-alpha.1",
|
||||
"@tldraw/vec": "2.0.0-alpha.1",
|
||||
"@use-gesture/react": "^10.2.20",
|
||||
"fast-copy": "^2.1.3",
|
||||
"@use-gesture/react": "^10.2.22",
|
||||
"fast-copy": "^3.0.0",
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"hotkeys-js": "^3.10.0",
|
||||
"is-plain-object": "^5.0.0",
|
||||
"mobx": "^6.6.2",
|
||||
"mobx": "^6.7.0",
|
||||
"mobx-react-lite": "^3.4.0",
|
||||
"mousetrap": "^1.6.5",
|
||||
"potpack": "^1.0.2",
|
||||
"potpack": "^2.0.0",
|
||||
"proxy-compare": "^2.3.0",
|
||||
"rbush": "^3.0.1",
|
||||
"uuid": "^8.0.0"
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/is-plain-object": "^2.0.4",
|
||||
"@types/mousetrap": "^1.6.8",
|
||||
"@types/mousetrap": "^1.6.11",
|
||||
"@types/node": "^16.11.6",
|
||||
"@types/rbush": "^3.0.0",
|
||||
"@types/react": "^17.0.0",
|
||||
|
||||
@@ -35,22 +35,22 @@
|
||||
"@tldraw/core": "2.0.0-alpha.1",
|
||||
"@tldraw/intersect": "2.0.0-alpha.1",
|
||||
"@tldraw/vec": "2.0.0-alpha.1",
|
||||
"@use-gesture/react": "^10.2.20",
|
||||
"@use-gesture/react": "^10.2.22",
|
||||
"hotkeys-js": "^3.10.0",
|
||||
"is-plain-object": "^5.0.0",
|
||||
"mobx": "^6.6.2",
|
||||
"mobx": "^6.7.0",
|
||||
"mobx-react-lite": "^3.4.0",
|
||||
"mousetrap": "^1.6.5",
|
||||
"rbush": "^3.0.1",
|
||||
"uuid": "^8.0.0"
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=16.8",
|
||||
"react": ">=16.8 || ^17.0",
|
||||
"react-dom": "^16.8 || ^17.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/is-plain-object": "^2.0.4",
|
||||
"@types/mousetrap": "^1.6.8",
|
||||
"@types/mousetrap": "^1.6.11",
|
||||
"@types/node": "^16.11.6",
|
||||
"@types/offscreencanvas": "^2019.6.4",
|
||||
"@types/rbush": "^3.0.0",
|
||||
|
||||
1194
tldraw/yarn.lock
1194
tldraw/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user