mirror of
https://github.com/lossless-group/perplexed-plugin.git
synced 2026-07-22 06:49:50 +00:00
On branch master Your branch is up to date with 'origin/master'. Changes to be committed: modified: package.json modified: pnpm-lock.yaml
35 lines
893 B
JSON
35 lines
893 B
JSON
{
|
|
"name": "obsidian-plugin-starter",
|
|
"version": "0.0.1.0",
|
|
"description": "This is starter code for Obsidian plugins (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"
|
|
},
|
|
"keywords": [
|
|
"Obsidian",
|
|
"Plugin",
|
|
"Footnotes",
|
|
"Citations"
|
|
],
|
|
"author": "The Lossless Group",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.12",
|
|
"@typescript-eslint/eslint-plugin": "8.36.0",
|
|
"@typescript-eslint/parser": "8.36.0",
|
|
"builtin-modules": "5.0.0",
|
|
"esbuild": "0.25.6",
|
|
"eslint": "^9.30.1",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.15.0",
|
|
"fastify": "^5.4.0",
|
|
"zod": "^4.0.0"
|
|
}
|
|
}
|