-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.35 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.35 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
{
"name": "ai-sidebar-extension",
"version": "0.7.3",
"description": "Chrome extension AI sidebar with LLM providers and MCP support",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "pnpm run typecheck && pnpm run lint",
"build": "vite build",
"build:force": "vite build",
"build:release": "RELEASE=1 vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"lint:fix": "eslint . --ext ts,tsx --fix",
"lint:strict": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\" \"*.{json,md}\"",
"check": "pnpm run typecheck && pnpm run lint && pnpm run test",
"clean": "rm -rf dist release",
"prerelease": "pnpm run clean && pnpm test",
"release": "pnpm run build:release && node scripts/package-release.js",
"release:github": "node scripts/github-release.js",
"postinstall": "husky || true"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.74",
"@ai-sdk/google": "^2.0.68",
"@ai-sdk/openai": "^2.0.102",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/json-schema": "^7.0.15",
"@types/prismjs": "^1.26.6",
"ai": "^5.0.173",
"json-formatter-js": "^2.5.23",
"linkedom": "^0.18.12",
"loglevel": "^1.9.2",
"prismjs": "^1.30.0",
"streaming-markdown": "^0.2.15",
"zod": "^3.25.76"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.4.0",
"@eslint/js": "^9.39.4",
"@types/chrome": "^0.0.286",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.19.17",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"archiver": "^7.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"terser": "^5.46.1",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
}
}