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: .gitignore modified: .windsurfrules modified: README.md modified: package.json
35 lines
882 B
JSON
35 lines
882 B
JSON
{
|
|
"name": "cite-wide",
|
|
"version": "0.0.0.1",
|
|
"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": "^22.15.30",
|
|
"@typescript-eslint/eslint-plugin": "8.33.1",
|
|
"@typescript-eslint/parser": "8.33.1",
|
|
"builtin-modules": "5.0.0",
|
|
"esbuild": "0.25.5",
|
|
"eslint": "^9.28.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"fastify": "^5.3.3",
|
|
"zod": "^3.25.56"
|
|
}
|
|
}
|