generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "obsidian-agent-client",
"version": "0.9.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\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/semver": "^7.7.1",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/utils": "^8.0.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": "^8.0.0",
"vitepress": "^1.6.4"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
"@codemirror/state": "6.5.0",
"@codemirror/view": "^6.35.0",
"diff": "^8.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"semver": "^7.7.3"
}
}