mirror of
https://github.com/lossless-group/image-gin.git
synced 2026-07-22 06:49:33 +00:00
On branch master Your branch is up to date with 'origin/master'. Changes to be committed: modified: README.md modified: esbuild.config.mjs modified: manifest.json modified: package.json modified: plugin-config.yaml
38 lines
No EOL
1 KiB
JSON
38 lines
No EOL
1 KiB
JSON
{
|
|
"name": "image-gin-plugin",
|
|
"version": "0.0.1",
|
|
"description": "Enables users to use Generative AI to generate contextually relevant images through an [Obsidian](https://obsidian.md) plugin.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"setup": "node setup-plugin.mjs",
|
|
"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",
|
|
"Image-Generation",
|
|
"Image-Generators",
|
|
"API-Integration"
|
|
],
|
|
"author": "The Lossless Group",
|
|
"license": "The Unlicense",
|
|
"devDependencies": {
|
|
"@eslint/plugin-kit": "^0.3.3",
|
|
"@types/node": "^24.0.12",
|
|
"@typescript-eslint/eslint-plugin": "8.37.0",
|
|
"@typescript-eslint/parser": "8.37.0",
|
|
"builtin-modules": "5.0.0",
|
|
"esbuild": "0.25.6",
|
|
"eslint": "^9.31.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.15.0",
|
|
"fastify": "^5.4.0",
|
|
"zod": "^4.0.0"
|
|
}
|
|
} |