ProToots/package.json

39 lines
983 B
JSON
Raw Normal View History

2023-05-24 16:47:04 +00:00
{
"name": "protoots",
2023-05-25 13:37:24 +00:00
"scripts": {
"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",
"watch:webext": "web-ext run --keep-profile-changes --profile-create-if-missing --firefox-profile=.firefox-profile/",
"format": "prettier --write --ignore-path .gitignore .",
2023-06-15 16:28:37 +00:00
"package": "run-s -l build:**",
"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",
"npm-run-all": "^4.1.5",
2023-05-24 16:47:04 +00:00
"prettier": "^2.8.8",
"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"
},
"type": "module",
"webExt": {
"sourceDir": "dist/"
},
"dependencies": {
2023-07-10 20:19:01 +00:00
"sanitize-html": "^2.11.0",
"webextension-polyfill": "^0.10.0"
2023-05-24 16:47:04 +00:00
}
}