-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "better-diff",
"version": "0.1.0",
"description": "Render GitHub PR, commit, and compare diffs in a fast, virtualized viewer, with OAuth fallback when GitHub requires access.",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.19.0 <23"
},
"packageManager": "npm@10.9.7",
"scripts": {
"setup": "wxt prepare",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"test": "node --test tests/*.test.mjs",
"typecheck": "tsc --noEmit",
"audit:deps": "npm audit --omit=dev --audit-level=moderate",
"audit:signatures": "npm audit signatures"
},
"dependencies": {
"@pierre/diffs": "1.2.2",
"@pierre/icons": "0.5.0",
"@pierre/theme": "1.0.3",
"@pierre/trees": "1.0.0-beta.4",
"@pierre/truncate": "0.0.2",
"@pierre/vscode-icons": "0.0.9",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@types/chrome": "0.0.287",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.7.0",
"autoprefixer": "10.4.20",
"postcss": "8.5.15",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"wxt": "0.20.26"
},
"overrides": {
"react": "19.2.6",
"react-dom": "19.2.6",
"uuid": "11.1.1"
}
}