-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "claude-sessions",
"version": "0.3.2",
"description": "An Obsidian plugin for viewing Claude Code sessions. Browse, search, analyze, and export your sessions as interactive timelines with live watch and rich tool rendering — right alongside your notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"release": "node release.mjs",
"release:minor": "node release.mjs minor",
"release:major": "node release.mjs major"
},
"keywords": [
"obsidian",
"obsidian-plugin"
],
"author": "@gapmiss",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.30.1",
"@eslint/json": "^0.14.0",
"@types/diff": "^7.0.2",
"@types/node": "^20.0.0",
"builtin-modules": "^5.0.0",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"tslib": "2.4.0",
"typescript": "5.8.2",
"typescript-eslint": "8.35.1",
"vitest": "^4.1.1"
},
"dependencies": {
"diff": "^8.0.3",
"obsidian": "latest"
}
}