-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "github-html-preview",
"description": "Safely preview public HTML files and pull-request changes on GitHub",
"private": true,
"version": "0.6.1",
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"build:debug": "wxt build --mode debug",
"zip": "wxt zip",
"zip:debug": "wxt zip --mode debug",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"pretest": "wxt build",
"test": "vitest run",
"pretest:e2e": "wxt build",
"test:e2e": "playwright test",
"pretest:smoke": "wxt build",
"test:smoke": "playwright test --config=playwright.smoke.config.ts"
},
"dependencies": {
"es-module-lexer": "^2.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@wxt-dev/module-react": "^1.1.5",
"jsdom": "^29.1.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"wxt": "^0.20.27"
}
}