-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.72 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
54
55
56
57
58
{
"name": "obsidian-claude-code-integration",
"version": "1.8.1",
"description": "Claude Code Integration for Obsidian via ACP (Agent Client Protocol)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "npm run validate:quick && node esbuild.config.mjs production",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "npm run test:acp",
"test:headless": "npx tsx tests/headless-test.ts",
"test:acp": "npx tsx src/acp-core/__tests__/client.test.ts",
"test:acp:integration": "ANTHROPIC_API_KEY=$ANTHROPIC_API_KEY npx tsx src/acp-core/__tests__/client.test.ts",
"validate": "npm run lint && npm run typecheck && npm run test",
"validate:quick": "npm run lint && npm run typecheck",
"version": "node version.mjs",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"obsidian",
"claude",
"acp",
"ai",
"agent"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.20.0",
"eslint": "^9.39.2",
"eslint-plugin-obsidianmd": "^0.1.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"obsidian": "^1.5.7",
"prettier": "^3.8.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.13.0",
"@anthropic-ai/claude-agent-sdk": "^0.2.96",
"@zed-industries/claude-code-acp": "^0.13.1"
}
}