-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@freelensapp/agentbridge-extension",
"version": "1.0.0",
"description": "Freelens extension for per-cluster AI CLI sessions",
"repository": {
"type": "git",
"url": "git+https://github.com/freelensapp/freelens-agentbridge-extension.git",
"directory": "."
},
"main": "out/main/index.js",
"renderer": "out/renderer/index.js",
"files": [
"out/**/*"
],
"engines": {
"node": ">= 22.0.0",
"freelens": "^1.8.0"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"monaco-editor": "^0.52.2"
},
"copyright": "© 2025-2026 Freelens Authors",
"license": "MIT",
"author": {
"name": "Freelens Authors",
"email": "freelens@freelens.app"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"biome": "pnpm dlx @biomejs/biome@2.5.9",
"biome:check": "pnpm biome check",
"biome:fix": "pnpm biome check --fix",
"biome:migrate": "pnpm biome migrate --write",
"trunk": "pnpm dlx @trunkio/launcher@1.3.4",
"trunk:check": "pnpm trunk check",
"trunk:check:all": "pnpm trunk check --all",
"trunk:fix": "pnpm trunk check --fix",
"trunk:fix:all": "pnpm trunk check --fix --all",
"lint": "pnpm lint:check",
"lint:check": "pnpm biome:check",
"lint:fix": "pnpm biome:fix",
"knip": "pnpm dlx knip@6.32.2 --dependencies --no-gitignore",
"knip:check": "pnpm \"/^knip:(development|production)\\$/\"",
"knip:development": "pnpm knip",
"knip:production": "pnpm knip --production --strict",
"test": "pnpm test:unit",
"test:unit": "vitest run",
"type:check": "tsc --noEmit -p tsconfig.json --composite false",
"prebuild": "pnpm type:check",
"build": "electron-vite build",
"build:production": "cross-env VITE_PRESERVE_MODULES=false electron-vite build",
"build:force": "electron-vite build",
"bump-version": "pnpm version --no-commit-hooks --no-git-tag-version",
"pack:dev": "pnpm bump-version prerelease && pnpm build:force && pnpm build && pnpm clean:tgz && pnpm pack && pnpm dlx shx@0.4.0 ls \"$PWD/*.tgz\"",
"clean": "pnpm clean:out",
"clean:node_modules": "pnpm dlx shx@0.4.0 rm -rf node_modules",
"clean:out": "pnpm dlx shx@0.4.0 rm -rf out",
"clean:tgz": "pnpm dlx shx@0.4.0 rm -f \"*.tgz\"",
"clean:all": "pnpm \"/^clean:(node_modules|out|tgz)\\$/\""
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^8.0.2",
"@electron-toolkit/tsconfig": "^2.0.0",
"@freelensapp/extensions": "^1.10.3",
"@types/node": "~24.12.4",
"@types/react": "^17.0.93",
"@vitejs/plugin-react": "^6.1.0",
"cross-env": "^10.1.0",
"electron-vite": "^5.0.0",
"mobx": "6.13.7",
"mobx-react": "7.6.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "5.9.3",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"keywords": [
"extension",
"freelensapp",
"lens",
"openlens",
"freelens",
"opencode",
"claude-code",
"github-copilot",
"ai-agent",
"agentbridge"
],
"packageManager": "pnpm@10.34.5+sha512.a4ee05f2f73658255bd6a89859c065a45c28a57daefae2c893a168ee2b73168c37b91e83e57ea67654ad03f03031746430e8bce38e362e042605fb8abc80192e"
}