-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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": "claude-lens",
"private": true,
"version": "0.2.2",
"description": "Visual web development companion for Claude Code",
"author": "melon-hub",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/melon-hub/claude-lens.git"
},
"homepage": "https://github.com/melon-hub/claude-lens",
"bugs": {
"url": "https://github.com/melon-hub/claude-lens/issues"
},
"keywords": [
"claude",
"ai",
"browser",
"mcp",
"web-development",
"devtools",
"vscode-extension",
"electron"
],
"scripts": {
"dev": "pnpm -r --parallel run dev",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"typecheck": "pnpm -r run typecheck",
"clean": "pnpm -r run clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"esbuild": "^0.20.2",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}