-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.32 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
59
{
"name": "@novis10813/secondbrain-cli",
"version": "0.1.3",
"description": "A CLI tool for LLM agents to interact with Obsidian vaults",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"sb": "dist/index.js",
"secondbrain": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "bun run src/index.ts",
"test": "bun test",
"test:perf": "bun test tests/perf",
"coverage": "bun test --coverage",
"lint": "tsc --noEmit",
"prepare": "npm run build",
"check": "tsc --noEmit"
},
"keywords": [
"obsidian",
"cli",
"secondbrain",
"llm",
"agent",
"markdown",
"knowledge-management"
],
"author": "novis10813",
"repository": {
"type": "git",
"url": "git+https://github.com/novis10813/secondbrain-cli.git"
},
"bugs": {
"url": "https://github.com/novis10813/secondbrain-cli/issues"
},
"homepage": "https://github.com/novis10813/secondbrain-cli#readme",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.6.0",
"commander": "^12.0.0",
"moment": "^2.30.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}