mirror of
https://github.com/logseq/logseq.git
synced 2026-05-23 12:14:06 +00:00
* feat: WIP native cli command support * Add :shell/command-whitelist option * Integrate cli to code block * Add :code-block/command-whitelist option * fix: size of icon * improve(shell): cache user shell whitelist on application configures file * improve(electron): promisify run cli command * chore(libs): update version * fix(plugin): incorrect payload of pdf highlights section hook * improve(plugin): block renderer with specific block uuid * improve(plugin): expose logger for user lib * improve(plugin): block hooks type * improve(plugin): block slot hook with specific block * improve(plugin): auto generate key for provide UI options * improve(plugin): style of injected ui container * improve(plugin): types * improve(plugin): async messaging api from host to plugin * improve(plugin): add types * improve(apis): get external plugin metadata * improve(apis): invoke external plugin impls * improve(apis): call external plugin impls for simple commands * enhance(apis): datascript query api for predicate inputs * enhance(apis): datascript query api for predicate inputs * fix(apis): redundant args of datascript query api * enhance(plugins): position of float ui container * enhance(plugins): style of setting options * enhance(plugins): layouts data for float ui * chore(plugins): update CHANGELOG.md * improve(apis): add types * chore: fix some inclusive terms * improve(apis): types * chore(plugins): update CHANGELOG.md * chore(plugins): build libs * chore: update CHANGELOG.md * chore: remove experiemental alda integration * fix(lint): remove unused methods Co-authored-by: Tienson Qin <tiensonqin@gmail.com> Co-authored-by: Andelf <andelf@gmail.com>
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "@logseq/libs",
|
|
"version": "0.0.13",
|
|
"description": "Logseq SDK libraries",
|
|
"main": "dist/lsplugin.user.js",
|
|
"typings": "index.d.ts",
|
|
"private": false,
|
|
"scripts": {
|
|
"build:user": "webpack --mode production",
|
|
"dev:user": "npm run build:user -- --mode development --watch",
|
|
"build:core": "webpack --config webpack.config.core.js --mode production",
|
|
"dev:core": "npm run build:core -- --mode development --watch",
|
|
"build": "tsc && rm dist/*.js && npm run build:user",
|
|
"lint": "prettier --check \"src/**/*.{ts, js}\"",
|
|
"fix": "prettier --write \"src/**/*.{ts, js}\"",
|
|
"build:docs": "typedoc --plugin typedoc-plugin-lsp-docs src/LSPlugin.user.ts && typedoc --json docs/out.json ./src/LSPlugin.user.ts"
|
|
},
|
|
"dependencies": {
|
|
"csstype": "3.1.0",
|
|
"debug": "4.3.4",
|
|
"dompurify": "2.3.8",
|
|
"eventemitter3": "4.0.7",
|
|
"fast-deep-equal": "3.1.3",
|
|
"lodash-es": "4.17.21",
|
|
"path": "0.12.7",
|
|
"snake-case": "3.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.2",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@types/debug": "^4.1.5",
|
|
"@types/dompurify": "2.3.3",
|
|
"@types/lodash-es": "4.17.6",
|
|
"babel-loader": "^9.1.0",
|
|
"prettier": "^2.6.2",
|
|
"prettier-config-standard": "^5.0.0",
|
|
"terser-webpack-plugin": "^5.3.6",
|
|
"ts-loader": "9.3.0",
|
|
"typedoc": "^0.23.17",
|
|
"typedoc-plugin-lsp-docs": "^0.0.1",
|
|
"typescript": "4.7.3",
|
|
"webpack": "5.73.0",
|
|
"webpack-bundle-analyzer": "4.5.0",
|
|
"webpack-cli": "4.9.2"
|
|
}
|
|
}
|