package.json 746 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "owo_app",
  3. "version": "1.0.5",
  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. "win": {
  14. "icon": "/icon.ico",
  15. "target": [
  16. {
  17. "target": "portable",
  18. "arch": [
  19. "ia32"
  20. ]
  21. }
  22. ]
  23. }
  24. },
  25. "repository": "https://github.com/electron/electron-quick-start",
  26. "keywords": [
  27. "Electron",
  28. "quick",
  29. "start",
  30. "tutorial",
  31. "demo"
  32. ],
  33. "author": "GitHub",
  34. "license": "CC0-1.0",
  35. "devDependencies": {
  36. "electron": "17.0.1",
  37. "electron-builder": "22.14.13"
  38. }
  39. }