forked from YishenTu/claudian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "claudian",
"version": "1.3.66",
"description": "Claudian - Claude Code embedded in Obsidian sidebar",
"main": "main.js",
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"build:css": "node scripts/build-css.mjs",
"dev": "npm run build:css && node esbuild.config.mjs",
"build": "node scripts/build.mjs production",
"typecheck": "tsc --noEmit",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "node scripts/run-jest.js",
"test:watch": "node scripts/run-jest.js --watch",
"test:coverage": "node scripts/run-jest.js --coverage",
"version": "node scripts/sync-version.js && git add manifest.json"
},
"keywords": [
"claude-code",
"obsidian",
"obsidian-plugin",
"productivity",
"ide"
],
"author": "Yishen Tu",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.0",
"@typescript-eslint/parser": "^8.30.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.27.1",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"obsidian": "latest",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.5",
"@modelcontextprotocol/sdk": "~1.25.3",
"tslib": "^2.8.1"
}
}