package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": "8.7.7",
  10. "date": "2025-12-05 14:35:50",
  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. "clean": "node package.js clean",
  20. "install": "node package.js install",
  21. "lint": "node package.js lint",
  22. "build": "node package.js build",
  23. "publish": "node package.js publish",
  24. "version": "node package.js version",
  25. "test": "node package.js test",
  26. "validate": "node package.js validate",
  27. "coverage": "node package.js coverage",
  28. "analyze": "node package.js analyze",
  29. "update": "node package.js update",
  30. "pull": "node package.js pull"
  31. },
  32. "dependencies": {
  33. "electron-updater": "6.6.8"
  34. },
  35. "devDependencies": {
  36. "@electron/notarize": "3.1.1",
  37. "@playwright/test": "1.57.0",
  38. "electron": "39.2.5",
  39. "electron-builder": "26.0.20",
  40. "eslint": "9.39.1"
  41. },
  42. "build": {
  43. "extends": "publish/electron-builder.json"
  44. },
  45. "nyc": {
  46. "reporter": "json",
  47. "report-dir": "dist/nyc/report",
  48. "temp-dir": "dist/nyc/.nyc_output"
  49. }
  50. }