-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.74 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
{
"name": "@devlensio/cli",
"version": "0.2.5",
"mcpName": "io.github.devlensio/devlens",
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlensio/devlensOSS.git"
},
"bin": {
"devlens": "bin/devlens.cjs"
},
"files": [
"bin/devlens.cjs"
],
"workspaces": [
"frontend"
],
"scripts": {
"dev": "concurrently --names engine,frontend --prefix-colors cyan,magenta \"bun run dev:engine\" \"bun run dev:frontend\"",
"dev:engine": "bun --watch src/server/index.ts",
"dev:frontend": "cd frontend && bun run dev",
"build:binaries": "bun build src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile dist/bin/devlens-darwin-arm64 && bun build src/cli/index.ts --compile --target=bun-darwin-x64 --outfile dist/bin/devlens-darwin-x64 && bun build src/cli/index.ts --compile --target=bun-linux-x64 --outfile dist/bin/devlens-linux-x64 && bun build src/cli/index.ts --compile --target=bun-linux-arm64 --outfile dist/bin/devlens-linux-arm64 && bun build src/cli/index.ts --compile --target=bun-windows-x64 --outfile dist/bin/devlens-windows-x64.exe",
"stage:binaries": "node scripts/stage-binaries.mjs"
},
"optionalDependencies": {
"@devlensio/cli-darwin-arm64": "0.2.5",
"@devlensio/cli-darwin-x64": "0.2.5",
"@devlensio/cli-linux-x64": "0.2.5",
"@devlensio/cli-linux-arm64": "0.2.5",
"@devlensio/cli-windows-x64": "0.2.5"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/bun": "^1.3.14",
"@types/node": "^26.0.0",
"commander": "^15.0.0",
"concurrently": "^9.0.0",
"devlensio": "^0.4.0",
"dotenv": "^17.3.1",
"lru-cache": "^11.5.1",
"zod": "^4.4.3"
}
}