mirror of
https://github.com/ItsVipra/ProToots
synced 2025-02-16 20:48:23 +00:00
28 lines
743 B
JSON
28 lines
743 B
JSON
{
|
|
"name": "protoots",
|
|
"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=.cache/profile/",
|
|
"format": "prettier --write --ignore-path .gitignore .",
|
|
"package": "run-s -l build:**"
|
|
},
|
|
"devDependencies": {
|
|
"@sprout2000/esbuild-copy-plugin": "1.1.8",
|
|
"esbuild": "0.17.19",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.8.8",
|
|
"web-ext": "^7.6.2"
|
|
},
|
|
"prettier": {
|
|
"endOfLine": "lf",
|
|
"printWidth": 100,
|
|
"useTabs": true,
|
|
"trailingComma": "all"
|
|
},
|
|
"webExt": {
|
|
"sourceDir": "dist/"
|
|
}
|
|
}
|