You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.5 KiB

5 months ago
1 year ago
9 months ago
9 months ago
5 months ago
5 months ago
  1. {
  2. "name": "easy-spider",
  3. "productName": "EasySpider",
  4. "version": "0.6.2",
  5. "icon": "./favicon",
  6. "description": "NoCode Visual Web Crawler",
  7. "main": "main.js",
  8. "scripts": {
  9. "start_direct": "electron .",
  10. "change_version": "node change_version.js",
  11. "start": "electron-forge start",
  12. "package": "electron-forge package",
  13. "make": "electron-forge make"
  14. },
  15. "keywords": [
  16. "Electron",
  17. "quick",
  18. "start",
  19. "tutorial",
  20. "demo"
  21. ],
  22. "author": "Naibo Wang",
  23. "license": "AGPL-3.0",
  24. "devDependencies": {
  25. "@electron-forge/cli": "^6.0.5",
  26. "@electron-forge/maker-deb": "^6.0.5",
  27. "@electron-forge/maker-rpm": "^6.0.5",
  28. "@electron-forge/maker-squirrel": "^6.0.5",
  29. "@electron-forge/maker-zip": "^6.0.5",
  30. "electron": "^27.1.3"
  31. },
  32. "repository": "https://github.com/NaiboWang/EasySpider",
  33. "dependencies": {
  34. "cors": "^2.8.5",
  35. "electron-squirrel-startup": "^1.0.0",
  36. "express": "^4.19.2",
  37. "formidable": "^3.5.0",
  38. "http": "^0.0.1-security",
  39. "multer": "^1.4.5-lts.1",
  40. "node-abi": "^3.52.0",
  41. "node-window-manager": "^2.2.4",
  42. "selenium-webdriver": "^4.16.0",
  43. "ws": "^8.17.1",
  44. "xlsx": "^0.18.5"
  45. },
  46. "config": {
  47. "forge": {
  48. "makers": [
  49. {
  50. "name": "@electron-forge/maker-squirrel",
  51. "config": {
  52. "name": "EasySpider"
  53. }
  54. },
  55. {
  56. "name": "@electron-forge/maker-zip",
  57. "platforms": [
  58. "darwin"
  59. ]
  60. },
  61. {
  62. "name": "@electron-forge/maker-deb"
  63. },
  64. {
  65. "name": "@electron-forge/maker-rpm"
  66. }
  67. ],
  68. "packagerConfig": {
  69. "icon": "./favicon",
  70. "appVersion": "0.6.2",
  71. "name": "EasySpider",
  72. "executableName": "EasySpider",
  73. "appCopyright": "Naibo Wang (naibowang@foxmail.com)",
  74. "win32metadata": {
  75. "ProductName": "EasySpider",
  76. "CompanyName": "王乃博 (浙江大学与新加坡国立大学)",
  77. "FileDescription": "EasySpider"
  78. }
  79. },
  80. "publishers": []
  81. }
  82. }
  83. }