-
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.46 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.46 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": "membase",
"version": "0.1.6",
"description": "CLI tool to install Membase MCP server for AI clients (Cursor, VS Code, Claude, etc.)",
"bin": {
"membase": "./bin/run"
},
"directories": {
"lib": "src",
"bin": "bin"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aristoapp/membase-cli.git"
},
"scripts": {
"build": "tsup-node",
"build:watch": "tsup-node --watch",
"clean": "rimraf dist",
"compile": "tsc",
"format": "biome format .",
"format:fix": "biome format . --write",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"start": "bun ./bin/run.ts",
"start:node": "node ./bin/run"
},
"keywords": [
"membase",
"mcp",
"cli",
"ai",
"cursor",
"vscode",
"claude"
],
"author": "Membase <hello@membase.so>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@tsconfig/node20": "^20.1.6",
"@types/cross-spawn": "^6.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.8",
"@types/yargs": "^17.0.33",
"rimraf": "^5.0.10",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"consola": "^3.4.2",
"cross-spawn": "^7.0.6",
"dotenv": "^16.6.1",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.3.1",
"picocolors": "^1.1.1",
"yargs": "^17.7.2"
},
"packageManager": "bun@1.3.4"
}