-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.45 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
96
97
98
99
{
"name": "panelot",
"description": "Chrome and Edge AI agent extension with BYOK providers, browser tools, Skills, and MCP",
"private": true,
"version": "0.5.2",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"type": "module",
"scripts": {
"dev": "wxt",
"dev:edge": "wxt -b edge",
"docs:dev": "vitepress dev docs",
"docs:i18n:check": "node scripts/check-docs-i18n.mjs",
"docs:build": "pnpm docs:i18n:check && vitepress build docs",
"docs:preview": "vitepress preview docs",
"build": "wxt build",
"build:edge": "wxt build -b edge",
"zip": "wxt zip",
"zip:edge": "wxt zip -b edge",
"compile": "node scripts/check-protocol-manifests.mjs && tsc --noEmit && tsc --noEmit -p tsconfig.entrypoints.json && tsc --noEmit -p tsconfig.e2e.json && tsc --noEmit -p tsconfig.preview.json",
"protocol:check": "node scripts/check-protocol-manifests.mjs",
"protocol:write": "node scripts/check-protocol-manifests.mjs --write",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write \"{e2e,entrypoints,preview,src,tests,scripts}/**/*.{ts,tsx,js,mjs,json}\" \"docs/.vitepress/**/*.{ts,mts,js,mjs,json,css}\" \"*.{ts,js,mjs,json}\"",
"format:check": "prettier --check \"{e2e,entrypoints,preview,src,tests,scripts}/**/*.{ts,tsx,js,mjs,json}\" \"docs/.vitepress/**/*.{ts,mts,js,mjs,json,css}\" \"*.{ts,js,mjs,json}\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"e2e": "wxt build && playwright test",
"budget": "node scripts/check-bundle-budget.mjs",
"zip:smoke": "node scripts/zip-smoke.mjs",
"icons": "node scripts/render-icons.mjs",
"postinstall": "wxt prepare"
},
"dependencies": {
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.7.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"codemirror": "^6.0.2",
"dexie": "^4.4.4",
"js-yaml": "4.3.0",
"jszip": "3.10.1",
"katex": "^0.17.0",
"lucide-react": "^1.23.0",
"radix-ui": "^1.6.1",
"react": "^19",
"react-dom": "^19",
"react-markdown": "^10.1.0",
"react-virtuoso": "^4.18.10",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^4.3.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"wxt": "^0.20.27",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "^1.61.1",
"@tailwindcss/vite": "^4.3.2",
"@types/chrome": "^0.2.2",
"@types/node": "20.19.25",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "4.1.9",
"@wxt-dev/module-react": "^1.2.2",
"esbuild": "^0.28.1",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.1.1",
"fake-indexeddb": "^6.2.5",
"globals": "^17.7.0",
"happy-dom": "^20.10.6",
"prettier": "3.9.5",
"shadcn": "^4.13.0",
"tailwindcss": "^4.3.2",
"terser": "^5.49.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "8.63.0",
"vite": "^8.1.3",
"vitepress": "^1.6.4",
"vitest": "4.1.9"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "1.1.4"
}
}