mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-05 11:40:13 +00:00
19 lines
396 B
JSON
19 lines
396 B
JSON
|
{
|
||
|
"name": "tubearchivist-browser-extension",
|
||
|
"private": true,
|
||
|
"scripts": {
|
||
|
"lint": "eslint 'extension/**/*.js'",
|
||
|
"format": "prettier --write 'extension/**/*.js'"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^8.26.0",
|
||
|
"prettier": "^2.7.1",
|
||
|
"eslint-config-prettier": "^8.5.0"
|
||
|
},
|
||
|
"prettier": {
|
||
|
"singleQuote": true,
|
||
|
"arrowParens": "avoid",
|
||
|
"printWidth": 100
|
||
|
}
|
||
|
}
|