-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "strong-password-generator",
"description": "Generates strong random passwords.",
"private": true,
"version": "2.0.2",
"type": "module",
"scripts": {
"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",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"submit": "wxt submit --chrome-zip .output/*-chrome.zip",
"submit:dry-run": "wxt submit --dry-run --chrome-zip .output/*-chrome.zip",
"postinstall": "wxt prepare"
},
"pnpm": {
"overrides": {
"brace-expansion@>=4.0.0 <5.0.5": "5.0.5",
"node-forge@<1.4.0": "1.4.0",
"vite@<8.0.7": "8.0.7",
"defu@<6.1.7": "6.1.7",
"postcss@<8.5.10": "8.5.10"
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.2",
"@tsconfig/svelte": "^5.0.8",
"@types/chrome": "^0.1.38",
"@wxt-dev/module-svelte": "^2.0.4",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.53.7",
"svelte-check": "^4.4.4",
"tailwindcss": "^4.2.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.1",
"wxt": "^0.20.20"
}
}