mirror of
https://github.com/logseq/logseq.git
synced 2026-05-13 23:42:19 +00:00
* migrate yarn to pnpm
* chore: update pnpm version to 10.33.0 across all package.json files
* chore: update .npmrc and package.json for improved dependency management
* chore: unify Clojure, Node, and Java version in workflow files
* fix: enable shamefully-hoist for now and add electron, keytar to onlyBuiltDependencies
* feat: add cider/piggieback dependency and update nREPL middleware configuration to silence warnings
* ensure pnpm setup prior to node setup
* fix: update logseq/bb-tasks git SHA
* feat: add pnpm configuration for onlyBuiltDependencies in package.json
* feat: add onlyBuiltDependencies configuration for better-sqlite3 in pnpm settings
* chore: update pnpm lockfile
* fix: resolve merge conflicts
* fix: remove invisible characters from markdown headers
* fix: update .npmrc comments for clarity on lockfile usage
* Revert "feat: add cider/piggieback dependency and update nREPL middleware configuration to silence warnings"
This reverts commit 70a111936f.
* fix: remove invisible characters from various README files and add .editorconfig
* fix: clarify lockfile resolution process in SKILL.md
---------
Co-authored-by: Tienson Qin <tiensonqin@gmail.com>
103 lines
2.9 KiB
JSON
103 lines
2.9 KiB
JSON
{
|
|
"name": "ui",
|
|
"version": "0.0.1",
|
|
"packageManager": "pnpm@10.33.0",
|
|
"description": "UI components for Logseq.",
|
|
"author": "Logseq",
|
|
"scripts": {
|
|
"watch:ui:examples": "parcel serve ./examples/index.html",
|
|
"build:ui:only": "parcel build --target ui",
|
|
"build:ui": "rm -rf .parcel-cache && pnpm build:ui:only",
|
|
"postinstall": "pnpm build:ui",
|
|
"test": "node --experimental-strip-types --test src/i18n.test.mts"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@radix-ui/colors": "^3.0.0",
|
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
"@radix-ui/react-avatar": "^1.1.11",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-context-menu": "^2.2.16",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
"@radix-ui/react-label": "^2.1.8",
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
"@radix-ui/react-slider": "^1.3.6",
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@radix-ui/react-switch": "^1.2.6",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@radix-ui/react-toast": "^1.2.15",
|
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
"aws-amplify": "^6.16.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"date-fns": "^2.30.0",
|
|
"lucide-react": "^0.577.0",
|
|
"react": "^18.3.1",
|
|
"react-day-picker": "^8.9.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "^7.71.2",
|
|
"react-remove-scroll": "^2.7.2",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"uniqolor": "1.1.1",
|
|
"yup": "^1.7.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.29.0",
|
|
"@babel/preset-env": "^7.29.2",
|
|
"@babel/preset-react": "^7.28.5",
|
|
"@babel/preset-typescript": "^7.28.5",
|
|
"@types/babel__core": "^7.20.5",
|
|
"@types/babel__preset-env": "^7.10.0",
|
|
"@types/prop-types": "^15.7.15",
|
|
"@types/react": "18.3.1",
|
|
"@types/react-dom": "18.3.1",
|
|
"buffer": "^5.5.0",
|
|
"parcel": "2.8.3",
|
|
"postcss": "^8.5.8",
|
|
"postcss-loader": "^8.2.1",
|
|
"postcss-nesting": "^14.0.0",
|
|
"string-width": "8.2.0",
|
|
"strip-ansi": "^7.2.0",
|
|
"style-loader": "4.0.0"
|
|
},
|
|
"alias": {
|
|
"react": {
|
|
"global": "React"
|
|
},
|
|
"react-dom": {
|
|
"global": "ReactDOM"
|
|
},
|
|
"react/jsx-dev-runtime": "./node_modules/react/jsx-dev-runtime.js",
|
|
"react/jsx-runtime": "./node_modules/react/jsx-runtime.js",
|
|
"@/*": "./@/$1"
|
|
},
|
|
"targets": {
|
|
"main": false,
|
|
"ui": {
|
|
"source": "src/ui.ts",
|
|
"outputFormat": "global",
|
|
"includeNodeModules": {
|
|
"react": false,
|
|
"react-dom": false
|
|
}
|
|
}
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"jackspeak": "^2",
|
|
"string-width": "^8",
|
|
"strip-ansi": "^7"
|
|
}
|
|
},
|
|
"license": "MIT"
|
|
}
|