package.json 649 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "wxt-vue-starter",
  3. "description": "manifest.json description",
  4. "private": true,
  5. "version": "0.0.0",
  6. "type": "module",
  7. "scripts": {
  8. "dev": "wxt",
  9. "dev:firefox": "wxt -b firefox",
  10. "build": "wxt build",
  11. "build:firefox": "wxt build -b firefox",
  12. "zip": "wxt zip",
  13. "zip:firefox": "wxt zip -b firefox",
  14. "compile": "vue-tsc --noEmit",
  15. "postinstall": "wxt prepare"
  16. },
  17. "dependencies": {
  18. "vue": "^3.5.29"
  19. },
  20. "devDependencies": {
  21. "@wxt-dev/module-vue": "^1.0.3",
  22. "typescript": "^5.9.3",
  23. "vite": "^8.1.5",
  24. "vue-tsc": "^3.2.5",
  25. "web-ext": "^10.5.0",
  26. "wxt": "^0.21.3"
  27. }
  28. }