2023-05-24 16:47:04 +00:00
|
|
|
{
|
2023-05-27 17:39:10 +00:00
|
|
|
"name": "protoots",
|
2023-05-25 13:37:24 +00:00
|
|
|
"scripts": {
|
2023-05-30 16:10:10 +00:00
|
|
|
"build:scripts": "node scripts/build.mjs",
|
|
|
|
"build:webext": "web-ext build --overwrite-dest",
|
|
|
|
"start": "run-p -l -r watch:**",
|
|
|
|
"watch:scripts": "node scripts/watch.mjs",
|
2023-05-31 17:52:33 +00:00
|
|
|
"watch:webext": "web-ext run --keep-profile-changes --profile-create-if-missing --firefox-profile=.firefox-profile/",
|
2023-05-30 16:10:10 +00:00
|
|
|
"format": "prettier --write --ignore-path .gitignore .",
|
2023-06-15 16:28:37 +00:00
|
|
|
"package": "run-s -l build:**",
|
2023-07-10 19:57:07 +00:00
|
|
|
"lint": "eslint src/",
|
|
|
|
"test": "uvu tests/"
|
2023-05-25 13:37:24 +00:00
|
|
|
},
|
2023-05-24 16:47:04 +00:00
|
|
|
"devDependencies": {
|
2023-05-30 16:09:14 +00:00
|
|
|
"@sprout2000/esbuild-copy-plugin": "1.1.8",
|
|
|
|
"esbuild": "0.17.19",
|
2023-06-15 16:28:37 +00:00
|
|
|
"eslint": "^8.42.0",
|
2023-06-15 16:32:30 +00:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-05-30 16:10:10 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-05-24 16:47:04 +00:00
|
|
|
"prettier": "^2.8.8",
|
2023-07-10 19:57:07 +00:00
|
|
|
"uvu": "^0.5.6",
|
2023-05-24 16:47:04 +00:00
|
|
|
"web-ext": "^7.6.2"
|
2023-05-25 13:35:33 +00:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"endOfLine": "lf",
|
|
|
|
"printWidth": 100,
|
|
|
|
"useTabs": true,
|
|
|
|
"trailingComma": "all"
|
2023-05-30 16:10:10 +00:00
|
|
|
},
|
2023-07-10 19:57:07 +00:00
|
|
|
"type": "module",
|
2023-05-30 16:10:10 +00:00
|
|
|
"webExt": {
|
|
|
|
"sourceDir": "dist/"
|
2023-05-30 16:26:00 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-10 20:19:01 +00:00
|
|
|
"sanitize-html": "^2.11.0",
|
2023-05-30 16:26:00 +00:00
|
|
|
"webextension-polyfill": "^0.10.0"
|
2023-05-24 16:47:04 +00:00
|
|
|
}
|
|
|
|
}
|