Update dependencies and create development cripts

This commit is contained in:
Violet Millie 2024-01-22 23:27:40 +00:00
parent f08750be30
commit b44c6bd073
2 changed files with 14 additions and 4 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -1,11 +1,21 @@
{ {
"name": "spotify-web-notifications", "name": "spotify-web-notifications",
"module": "index.ts", "module": "index.ts",
"type": "module", "scripts": {
"run-web-ext": "web-ext run --keep-profile-changes -p SpotifyWebNotifications",
"run-devflow": "bun run-web-ext & bun build --watch src/extension/typescript/content.ts src/extension/typescript/background.ts --splitting --outdir dist"
},
"webExt": {
"sourceDir": "dist/"
},
"devDependencies": { "devDependencies": {
"@types/bun": "latest" "@types/bun": "latest",
"@types/firefox-webext-browser": "^120.0.0",
"web-ext": "^7.10.0"
}, },
"peerDependencies": { "peerDependencies": {
"typescript": "^5.0.0" "typescript": "^5.0.0"
} },
"type": "module"
} }