package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {"version":"1.0.62",
  2. "name": "ebrowser",
  3. "description": "The keyboard-friendly minimal suckless web browser",
  4. "main": "webview.js",
  5. "files": [
  6. "webview.js",
  7. "index.html",
  8. "package.json",
  9. "README.md",
  10. "translate.*",
  11. "js/*.js"
  12. ],
  13. "scripts": {
  14. "release": "electron-builder"
  15. },
  16. "author": "Richard H. Cao",
  17. "keywords": ["browser","minimal","suckless","command line","vim key map","user scripts"],
  18. "license": "GPL-3.0",
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/torappinfo/ebrowser.git"
  22. },
  23. "build": {
  24. "appId": "torapp.eweb",
  25. "publish": "github",
  26. "asar": false,
  27. "directories": {
  28. "output": "release"
  29. },
  30. "dmg": {
  31. "contents": [
  32. { "x": 110, "y": 150 },
  33. { "x": 240, "y": 150, "type": "link", "path": "/Applications" }
  34. ]
  35. },
  36. "nsis": {
  37. "createDesktopShortcut": "always"
  38. },
  39. "linux": {
  40. "target": "AppImage"
  41. }
  42. },
  43. "dependencies": {
  44. },
  45. "devDependencies": {
  46. "electron":"",
  47. "electron-builder": ""
  48. }
  49. }