mirror of
https://github.com/gloamfox/obsidian-smart-scribe.git
synced 2026-07-22 06:13:10 +00:00
- Update CHANGELOG.md with release notes for version 1.0.1 - Fix builtin-modules deprecation warning by switching to native node:module import - Update manifest.json version from 1.0.0 to 1.0.1 - Update package.json version from 1.0.0 to 1.0.1 - Update versions.json to include mapping for version 1.0.1
37 lines
920 B
JSON
37 lines
920 B
JSON
{
|
|
"name": "obsidian-smart-scribe",
|
|
"version": "1.0.1",
|
|
"description": "AI-powered writing assistant for Obsidian - generate metadata and optimize your writing",
|
|
"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": [
|
|
"obsidian",
|
|
"plugin",
|
|
"ai",
|
|
"claude",
|
|
"openai",
|
|
"deepseek",
|
|
"qwen",
|
|
"metadata",
|
|
"tags",
|
|
"classification",
|
|
"writing",
|
|
"optimization",
|
|
"smartscribe"
|
|
],
|
|
"author": "gloamfox",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|