-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) 路 2.57 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) 路 2.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "open-second-brain",
"version": "1.45.0",
"private": false,
"description": "Second brain for AI agents using Obsidian-compatible Markdown vaults. Works with Hermes, Claude Code, Codex, and OpenClaw.",
"keywords": [
"agents",
"mcp",
"obsidian",
"openclaw-plugin",
"second-brain"
],
"homepage": "https://github.com/itechmeat/open-second-brain",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itechmeat/open-second-brain.git"
},
"bin": {
"o2b": "./scripts/o2b",
"o2b-mcp": "./scripts/o2b-mcp",
"vault-log": "./scripts/vault-log"
},
"files": [
"bin/",
"openclaw/",
"src/",
"skills/",
"scripts/",
"plugins/",
"openclaw.plugin.json",
"README.md",
"LICENSE",
"pyproject.toml"
],
"type": "module",
"scripts": {
"build:openclaw": "bun build src/openclaw/index.ts --outfile openclaw/index.js --target=node --format=esm --external openclaw/plugin-sdk/plugin-entry",
"test": "bash scripts/test",
"lint": "oxlint -c oxlint.json",
"lint:fix": "oxlint -c oxlint.json --fix",
"fmt": "oxfmt --write '**/*.{ts,js,json}' '.oxfmtrc.json' '!**/openclaw/index.js' '!.claude/**' --no-error-on-unmatched-pattern",
"fmt:check": "oxfmt --check '**/*.{ts,js,json}' '.oxfmtrc.json' '!**/openclaw/index.js' '!.claude/**' --no-error-on-unmatched-pattern",
"typecheck": "tsc --noEmit",
"validate": "bun run typecheck && bun run lint && bun run test",
"validate:fix": "bun run lint:fix && bun run fmt",
"sync-version": "bun run scripts/sync-version.ts",
"sync-version:check": "bun run scripts/sync-version.ts --check",
"link-ratchet": "bun run scripts/link-ratchet.ts",
"link-ratchet:check": "bun run scripts/link-ratchet.ts --check",
"check:paths": "bun run scripts/check-hardcoded-paths.ts",
"check:paths:strict": "bun run scripts/check-hardcoded-paths.ts --strict",
"hooks:install": "git config core.hooksPath .githooks && echo 'git hooks enabled (core.hooksPath=.githooks)'",
"prepare": "git rev-parse --git-dir >/dev/null 2>&1 && git config core.hooksPath .githooks || true"
},
"dependencies": {
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"@types/node": "^22.0.0",
"@types/proper-lockfile": "^4.1.4",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"typescript": "^5.5.0"
},
"optionalDependencies": {
"@node-rs/jieba": "^2.0.1",
"sqlite-vec": "^0.1.9",
"tiny-segmenter": "^0.2.0"
},
"openclaw": {
"extensions": [
"./openclaw/index.js"
]
}
}