mirror of
https://github.com/jglev/obsidian-apply-patterns-plugin.git
synced 2026-07-22 05:40:26 +00:00
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "obsidian-apply-patterns",
|
|
"version": "2.1.2",
|
|
"description": "An Obsidian plugin for applying patterns of find and replace in succession.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "yarn generate-typeguard-functions && node esbuild.config.mjs",
|
|
"build": "yarn generate-typeguard-functions && node esbuild.config.mjs production",
|
|
"generate-typeguard-functions": "rm -f ./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",
|
|
"regex",
|
|
"find-and-replace"
|
|
],
|
|
"author": "Jacob Levernier",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/lodash.clonedeep": "^4.5.6",
|
|
"@types/node": "^14.17.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.2.0",
|
|
"@typescript-eslint/parser": "^5.2.0",
|
|
"builtin-modules": "^3.2.0",
|
|
"esbuild": "0.13.12",
|
|
"moment": "^2.29.1",
|
|
"obsidian": "^0.12.2",
|
|
"prettier": "^2.2.1",
|
|
"ts-auto-guard": "^1.0.0-alpha.26",
|
|
"tslib": "^2.0.3",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"dependencies": {
|
|
"chrono-node": "^2.3.4",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"rrule": "^2.6.8",
|
|
"to-regex-range": "^5.0.1"
|
|
}
|
|
}
|