| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "netron",
- "productName": "Netron",
- "author": {
- "name": "Lutz Roeder",
- "email": "[email protected]",
- "url": "https://www.lutzroeder.com"
- },
- "version": "8.1.5",
- "date": "2025-02-01 03:48:46",
- "description": "Visualizer for neural network, deep learning, and machine learning models",
- "license": "MIT",
- "repository": "lutzroeder/netron",
- "type": "module",
- "main": "source/app.js",
- "scripts": {
- "start": "node package.js start",
- "server": "python package.py build start",
- "test": "node test/models.js",
- "lint": "node package.js lint",
- "validate": "node package.js validate",
- "clean": "node package.js clean",
- "purge": "node package.js purge",
- "install": "node package.js install",
- "build": "node package.js build",
- "publish": "node package.js publish",
- "version": "node package.js version",
- "coverage": "node package.js coverage",
- "analyze": "node package.js analyze",
- "update": "node package.js update",
- "pull": "node package.js pull"
- },
- "dependencies": {
- "electron-updater": "6.3.9"
- },
- "devDependencies": {
- "@electron/notarize": "2.5.0",
- "electron": "34.0.2",
- "electron-builder": "25.1.8",
- "eslint": "9.19.0"
- },
- "build": {
- "extends": "publish/electron-builder.json"
- },
- "config": {
- "forge": "publish/forge.config.js"
- },
- "nyc": {
- "reporter": "json",
- "report-dir": "dist/nyc/report",
- "temp-dir": "dist/nyc/.nyc_output"
- }
- }
|