feat: simple extension setup

This commit is contained in:
2026-05-31 21:37:04 +02:00
parent d6f170ac2f
commit 98f0fd10b0
12 changed files with 522 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "wov-assassins-convention-tweaks",
"version": "1.0.0",
"description": "Tweaks for WoV Assassins Convention",
"scripts": {
"build": "esbuild src/content.ts src/popup.ts --bundle --outdir=dist --platform=browser --target=chrome120",
"watch": "esbuild src/content.ts src/popup.ts --bundle --outdir=dist --platform=browser --target=chrome120 --watch",
"dev": "pnpm watch"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"esbuild": "^0.24.0",
"typescript": "^5.6.0"
}
}