mirror of
https://github.com/jglev/obsidian-apply-patterns-plugin.git
synced 2026-07-22 05:40:26 +00:00
* Added 'Apply Pattern to whole Document' command. * Added Commands functionality. * Split out default settings, and added clear all settings button. * Started adding typeguard checks. * Implemented JSON checking when importing settings. * Made reset settings button red on click. * Updated Readme. * Fixed bug whereby newline characters \n were being escaped in the settings JSON and then not unescaped, resulting in \n working in From lines but not To lines. * Documented regex flavor used by the plugin.
58 lines
2.1 KiB
JSON
58 lines
2.1 KiB
JSON
{
|
|
"name": "obsidian-apply-patterns",
|
|
"version": "1.1.1",
|
|
"description": "An Obsidian plugin for applying patterns of find and replace in succession.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "yarn generate-typeguard-functions && rollup --config rollup.config.js -w",
|
|
"build": "yarn generate-typeguard-functions && rollup --config rollup.config.js",
|
|
"lint": "eslint ./src --fix && tsc --noEmit --pretty && svelte-check",
|
|
"test": "echo 'No tests currently defined' && exit 0",
|
|
"generate-typeguard-functions": "rm ./src/Settings.guard.ts && ts-auto-guard ./src/Settings.ts && sed -i 's/^import {/import type {/' ./src/Settings.guard.ts"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"obsidian-apply-patterns",
|
|
"task-manager",
|
|
"task-management"
|
|
],
|
|
"author": "Jacob Levernier",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
"@rollup/plugin-typescript": "^8.2.1",
|
|
"@tsconfig/svelte": "^1.0.10",
|
|
"@types/jest": "^26.0.22",
|
|
"@types/lodash.clonedeep": "^4.5.6",
|
|
"@types/node": "^14.17.6",
|
|
"@typescript-eslint/eslint-plugin": "^4.19.0",
|
|
"@typescript-eslint/parser": "^4.19.0",
|
|
"async-mutex": "^0.3.1",
|
|
"eslint": "^7.22.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"jest": "^26.6.3",
|
|
"moment": "^2.29.1",
|
|
"obsidian": "^0.12.2",
|
|
"prettier": "^2.2.1",
|
|
"rollup": "^2.32.1",
|
|
"rollup-plugin-svelte": "^7.1.0",
|
|
"svelte": "^3.37.0",
|
|
"svelte-check": "^1.5.2",
|
|
"svelte-preprocess": "^4.7.2",
|
|
"ts-auto-guard": "^1.0.0-alpha.26",
|
|
"ts-jest": "^26.5.4",
|
|
"tslib": "^2.0.3",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"dependencies": {
|
|
"chrono-node": "^2.2.6",
|
|
"dayjs": "^1.10.6",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"rrule": "^2.6.8",
|
|
"to-regex-range": "^5.0.1"
|
|
}
|
|
}
|