-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "forest-cli",
"version": "0.6.0",
"description": "Ingest unstructured ideas into a graph-first knowledge base.",
"bin": {
"forest": "dist/index.js"
},
"scripts": {
"build": "bun x tsc",
"lint": "bun x tsc --noEmit",
"dev": "bun run src/index.ts",
"dev:server": "bun run src/server/index.ts",
"start": "bun run dist/index.js",
"test": "bun test"
},
"keywords": [
"graph",
"cli",
"knowledge",
"zettelkasten"
],
"author": "",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.7.0",
"@elysiajs/cors": "^1.1.1",
"@elysiajs/swagger": "^1.1.5",
"@xenova/transformers": "^2.17.2",
"chalk": "^4.1.2",
"clerc": "^0.44.0",
"elysia": "^1.1.22",
"graphology": "^0.25.1",
"marked": "^15.0.7",
"marked-terminal": "^7.3.0",
"sql.js": "^1.11.0"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^20.11.20",
"@types/sql.js": "^1.4.9",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}