-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 572 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 572 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "view-background-image",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"build": "./scripts/build.sh",
"manifest:chrome": "./scripts/manifest.sh chrome",
"manifest:firefox": "./scripts/manifest.sh firefox",
"test": "playwright test",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@types/chrome": "^0.1.24",
"@types/node": "^24.7.2",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
}
}