mirror of
https://github.com/logseq/logseq.git
synced 2026-05-14 07:52:20 +00:00
* enhance(plugins): add block properties and block renderers with conditional rendering * chore(libs): bump version * enhance(docs): update Experiments API guide with detailed usage examples and best practices * enhance(ui): implement plugin renderer effects and enhance action bar visibility * enhance(plugin): improve router refresh mechanism for dynamic plugin routes * chore(libs): rename development notes and add SKILL.md for plugin SDK * enhance(plugin): enhance PluginLogger with structured log entries and UI for viewing logs * fix: lint * Update src/main/frontend/components/block.cljs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/main/frontend/handler/plugin.cljs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/main/frontend/handler/plugin.cljs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update libs/src/modules/LSPlugin.Experiments.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/main/frontend/handler/plugin.cljs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * enhance(plugin): add rich text interpolation to i18n translation * fix: lint * fix: lint * fix: remove unnecessary newlines and clean up code formatting * fix: lint * fix(libs): incorrect entry path for js mode * enhance(docs): add custom theme plugin guide and update SKILL.md * enhance(plugin): add 'open logs' option in multiple languages --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
50 lines
1.6 KiB
JSON
50 lines
1.6 KiB
JSON
{
|
|
"name": "@logseq/libs",
|
|
"packageManager": "pnpm@10.33.0",
|
|
"version": "0.3.3",
|
|
"description": "Logseq SDK libraries",
|
|
"main": "dist/lsplugin.user.js",
|
|
"typings": "index.d.ts",
|
|
"private": false,
|
|
"scripts": {
|
|
"build:user": "webpack --mode production",
|
|
"dev:user": "pnpm build:user -- --mode development --watch",
|
|
"build:core": "webpack --config webpack.config.core.js --mode production",
|
|
"dev:core": "pnpm build:core -- --mode development --watch",
|
|
"generate:schema": "node scripts/extract-sdk-schema.js",
|
|
"build": "tsc && rm dist/*.js && pnpm build:user",
|
|
"lint": "prettier --check \"src/**/*.{ts, js}\"",
|
|
"fix": "prettier --write \"src/**/*.{ts, js}\"",
|
|
"build:docs": "typedoc src/LSPlugin.user.ts",
|
|
"build:docs:json": "typedoc --json docs/out.json ./src/LSPlugin.user.ts"
|
|
},
|
|
"dependencies": {
|
|
"change-case": "^5.4.4",
|
|
"csstype": "3.2.3",
|
|
"debug": "4.4.3",
|
|
"deepmerge": "4.3.1",
|
|
"dompurify": "3.3.3",
|
|
"eventemitter3": "5.0.4",
|
|
"fast-deep-equal": "3.1.3",
|
|
"lodash-es": "4.17.23",
|
|
"path": "0.12.7"
|
|
},
|
|
"devDependencies": {
|
|
"ts-morph": "^27.0.2",
|
|
"@babel/core": "^7.29.0",
|
|
"@babel/preset-env": "^7.29.2",
|
|
"@types/debug": "^4.1.13",
|
|
"@types/lodash-es": "4.17.12",
|
|
"babel-loader": "^10.1.1",
|
|
"prettier": "^3.8.1",
|
|
"prettier-config-standard": "^7.0.0",
|
|
"terser-webpack-plugin": "^5.4.0",
|
|
"ts-loader": "9.5.4",
|
|
"typedoc": "0.28.17",
|
|
"typescript": "5.9.3",
|
|
"webpack": "5.105.4",
|
|
"webpack-bundle-analyzer": "5.2.0",
|
|
"webpack-cli": "^7.0.2"
|
|
}
|
|
}
|