-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.58 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
48
49
50
51
52
53
{
"name": "obsidian-claude-code",
"version": "0.1.0",
"description": "Claude Code AI assistant for Obsidian with Agent SDK and skills support",
"main": "main.js",
"scripts": {
"dev": "bun run esbuild.config.mjs",
"build": "bun run tsc -noEmit -skipLibCheck && bun run esbuild.config.mjs production",
"version": "bun run version-bump.mjs && git add manifest.json versions.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:property": "vitest run tests/property",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"typecheck": "tsc -noEmit",
"check": "bun run typecheck && bun run lint && bun run test"
},
"keywords": [
"obsidian",
"claude",
"ai",
"mcp",
"agent"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^2.0.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-vitest": "^0.4.0",
"fast-check": "^3.15.0",
"happy-dom": "^14.0.0",
"obsidian": "latest",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.51.0",
"vitest": "^2.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"zod": "^3.23.0"
}
}