-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.38 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
{
"name": "@vraspar/brain",
"version": "0.1.0-alpha.7",
"description": "CLI-first knowledge sharing for dev teams",
"type": "module",
"main": "dist/index.js",
"bin": {
"brain": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ test/",
"build:blog": "node scripts/build-blog.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"knowledge-sharing",
"mcp",
"fts5",
"team",
"git",
"sqlite",
"search"
],
"author": "vraspar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vraspar/brain.git"
},
"homepage": "https://github.com/vraspar/brain",
"bugs": {
"url": "https://github.com/vraspar/brain/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.8.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"gray-matter": "^4.0.3",
"simple-git": "^3.33.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"marked": "^17.0.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}