package.json 752 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "owo_app",
  3. "version": "1.0.0",
  4. "description": "A minimal Electron application",
  5. "main": "main.js",
  6. "scripts": {
  7. "start": "electron .",
  8. "pack": "electron-builder --dir",
  9. "dist": "electron-builder"
  10. },
  11. "build": {
  12. "extraResources": [
  13. ],
  14. "win": {
  15. "icon": "/icon.ico",
  16. "target": [
  17. {
  18. "target": "portable",
  19. "arch": [
  20. "ia32"
  21. ]
  22. }
  23. ]
  24. }
  25. },
  26. "repository": "https://github.com/electron/electron-quick-start",
  27. "keywords": [
  28. "Electron",
  29. "quick",
  30. "start",
  31. "tutorial",
  32. "demo"
  33. ],
  34. "author": "GitHub",
  35. "license": "CC0-1.0",
  36. "devDependencies": {
  37. "electron": "^14.0.0",
  38. "electron-builder": "^22.11.7"
  39. }
  40. }