-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 784 Bytes
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
{
"name": "painless-peek",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"build:firefox": "wxt build -b firefox",
"build:docs": "vite build --config vite.config.docs.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/chrome": "^0.1.38",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"vitest": "^4.1.1",
"wxt": "latest"
}
}