cdloh_obsidian-cron/package.json
2023-03-24 18:29:39 +00:00

91 lines
2 KiB
JSON

{
"name": "obsidian-cron-plugin",
"version": "0.0.1",
"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",
"@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"
},
"release": {
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "chore",
"release": "patch"
}
]
}
],
"@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"
}
]
}
]
]
}
}