mirror of
https://github.com/rait-09/obsidian-agent-client.git
synced 2026-07-22 16:30:32 +00:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "obsidian-agent-client",
|
|
"version": "0.3.1",
|
|
"description": "Use AI coding agents via the Agent Client Protocol directly inside Obsidian",
|
|
"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",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"*.css\"",
|
|
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"*.css\""
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@types/react": "^19.1.13",
|
|
"@types/react-dom": "^19.1.9",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^9.0.0",
|
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.4.2",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.9.3",
|
|
"@typescript-eslint/utils": "^8.0.0",
|
|
"typescript-eslint": "^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@agentclientprotocol/sdk": "^0.5.1",
|
|
"@codemirror/state": "^6.5.2",
|
|
"@codemirror/view": "^6.38.7",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1"
|
|
}
|
|
}
|