mirror of
https://github.com/cdloh/obsidian-cron.git
synced 2026-07-22 07:40:30 +00:00
## [1.1.2](https://github.com/cdloh/obsidian-cron/compare/1.1.1...1.1.2) (2023-08-24) ### Bug Fixes * Fix cleaning up running jobs when deleting crons ([e505695](e505695003)), closes [#4](https://github.com/cdloh/obsidian-cron/issues/4)
82 lines
1.9 KiB
JSON
82 lines
1.9 KiB
JSON
{
|
|
"name": "obsidian-cron-plugin",
|
|
"version": "1.1.2",
|
|
"description": "Simple CRON / Schedular plugin to regularly run user scripts or Obsidian commands for Obsidian (https://obsidian.md)",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"lint": "eslint ./src/*",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"keywords": [],
|
|
"author": "Callum Loh",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/node": "^16.11.6",
|
|
"@types/uuid": "^9.0.1",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"semantic-release": "^20.1.3",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cdloh/obsidian-cron.git"
|
|
},
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.11.6",
|
|
"cron-parser": "^4.8.1",
|
|
"eslint": "^8.36.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"release": {
|
|
"tagFormat": "${version}",
|
|
"plugins": [
|
|
"@semantic-release/release-notes-generator",
|
|
[
|
|
"@semantic-release/npm",
|
|
{
|
|
"npmPublish": false
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"package.json",
|
|
"package-lock.json",
|
|
"manifest.json",
|
|
"versions.json"
|
|
],
|
|
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/github",
|
|
{
|
|
"assets": [
|
|
{
|
|
"path": "main.js",
|
|
"label": "main.js"
|
|
},
|
|
{
|
|
"path": "manifest.json",
|
|
"label": "manifest.json"
|
|
},
|
|
{
|
|
"path": "styles.css",
|
|
"label": "styles.css"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|