package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "netron",
  3. "productName": "Netron",
  4. "author": {
  5. "name": "Lutz Roeder",
  6. "email": "[email protected]",
  7. "url": "https://www.lutzroeder.com"
  8. },
  9. "version": "7.6.9",
  10. "date": "2024-05-25 02:48:13",
  11. "description": "Visualizer for neural network, deep learning, and machine learning models",
  12. "license": "MIT",
  13. "repository": "lutzroeder/netron",
  14. "type": "module",
  15. "main": "source/app.js",
  16. "scripts": {
  17. "start": "node package.js start",
  18. "server": "python package.py build start",
  19. "test": "node test/models.js",
  20. "lint": "node package.js lint",
  21. "validate": "node package.js validate",
  22. "clean": "node package.js clean",
  23. "purge": "node package.js purge",
  24. "install": "node package.js install",
  25. "build": "node package.js build",
  26. "publish": "node package.js publish",
  27. "version": "node package.js version",
  28. "coverage": "node package.js coverage",
  29. "analyze": "node package.js analyze",
  30. "update": "node package.js update",
  31. "pull": "node package.js pull"
  32. },
  33. "dependencies": {
  34. "electron-updater": "6.1.8"
  35. },
  36. "devDependencies": {
  37. "@electron/notarize": "2.3.2",
  38. "electron": "30.0.8",
  39. "electron-builder": "24.13.3",
  40. "eslint": "9.3.0"
  41. },
  42. "build": {
  43. "extends": "publish/electron-builder.json"
  44. },
  45. "config": {
  46. "forge": "publish/forge.config.js"
  47. },
  48. "nyc": {
  49. "reporter": "json",
  50. "report-dir": "dist/nyc/report",
  51. "temp-dir": "dist/nyc/.nyc_output"
  52. }
  53. }