-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.42 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
{
"name": "ledry",
"version": "0.1.0",
"description": "Local-first AI lead research through your existing browser session",
"type": "module",
"private": false,
"license": "MIT",
"author": "OSS Codes contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/oss-codes/ledry.git"
},
"homepage": "https://github.com/oss-codes/ledry#readme",
"bugs": {
"url": "https://github.com/oss-codes/ledry/issues"
},
"keywords": [
"lead-research",
"browser-extension",
"cli",
"tui",
"ai-agent"
],
"bin": {
"ledry": "./src/cli.tsx"
},
"files": [
"src",
"extension",
"web",
"skills/ledry",
"README.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/cli.tsx",
"start": "bun run src/cli.tsx",
"typecheck": "tsc --noEmit",
"check": "biome check .",
"check:write": "biome check --write .",
"doctor:react": "react-doctor . --verbose",
"test": "bun test",
"clean": "bun run scripts/clean.ts",
"build": "bun run build:assets && bun build src/cli.tsx --compile --outfile dist/ledry",
"build:assets": "bun run build:dashboard && bun run build:extension",
"build:dashboard": "bun build web/main.tsx --outdir web/dist --entry-naming 'dashboard.[ext]' --chunk-naming 'chunks/[name]-[hash].[ext]' --target browser --format esm --production --external react-grab --external react-scan",
"build:extension": "bun build extension/service-worker.ts extension/content-script.ts extension/options.ts extension/popup.ts extension/sidepanel.ts --outdir extension/dist --target browser --format esm",
"postinstall": "bun run build:assets",
"prepack": "bun run clean && bun run build:assets",
"skill:validate": "bun run scripts/validate-skill.ts"
},
"dependencies": {
"@opentui/core": "0.4.3",
"@opentui/react": "0.4.3",
"commander": "15.0.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"string-width": "7.2.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@happy-dom/global-registrator": "20.8.9",
"@types/bun": "1.3.14",
"@types/chrome": "0.2.2",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/ws": "8.18.1",
"happy-dom": "20.8.9",
"react-doctor": "^0.7.6",
"react-grab": "^0.1.48",
"react-scan": "^0.5.7",
"typescript": "5.9.3",
"ws": "8.21.0"
},
"engines": {
"bun": ">=1.3.0"
}
}