heymoosh_ticktick-quick-add.../package.json
Claude 0f98a56552
Release 1.2.1: address Obsidian directory review warnings
- manifest: drop "Obsidian" from description (directory rule), remove unknown
  `main` field, bump to 1.2.1
- README: title now matches plugin name in manifest
- Remove unused base64UrlEncode helper
- Remove dead express dependency and server.js (clears qs / path-to-regexp
  vulnerability warnings)
- package.json: real name + author + description, drop sample-plugin template
  metadata
- versions.json: add 1.2.1 → 1.4.0

https://claude.ai/code/session_01V2fsiatACzjUCNwSEhwER9
2026-06-04 20:30:07 +00:00

24 lines
758 B
JSON

{
"name": "ticktick-quickadd-task",
"version": "1.2.1",
"description": "Create TickTick tasks from text at your cursor with automatic deep links back to your notes. Requires the Advanced URI plugin.",
"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"
},
"keywords": [],
"author": "Muxin Li",
"license": "MIT",
"devDependencies": {
"@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.25.4",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}