-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"name": "dennoh",
"version": "0.0.0",
"description": "Local-first AI-native knowledge management. Save everything to one place; AI organizes it.",
"type": "module",
"bin": {
"dennoh": "./dist/cli.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/cli/main.ts --target=bun --outfile=dist/cli.js",
"test": "bun test",
"lint": "biome check src tests",
"format": "biome format --write src tests",
"typecheck": "tsc --noEmit"
},
"engines": {
"bun": ">=1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goofmint/dennoh.git"
},
"keywords": [
"knowledge-management",
"mcp",
"local-first",
"markdown",
"ai"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/goofmint/dennoh/issues"
},
"homepage": "https://github.com/goofmint/dennoh#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
},
"trustedDependencies": [
"@biomejs/biome",
"onnxruntime-node",
"protobufjs"
],
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"isomorphic-git": "^1.38.4",
"uuidv7": "^1.2.1",
"yaml": "^2.9.0",
"zod": "^4.4.3"
}
}