| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "name": "Netron",
- "author": {
- "name": "Lutz Roeder",
- "email": "[email protected]",
- "url": "lutzroeder.com"
- },
- "version": "0.4.5",
- "description": "Viewer for ONNX neural network models",
- "license": "MIT",
- "repository": "lutzroeder/netron",
- "main": "src/app.js",
- "scripts": {
- "start": "electron .",
- "dist": "electron-builder --mac --linux --win",
- "release": "electron-builder --mac --linux --win --publish always",
- "postinstall": "electron-builder install-app-deps"
- },
- "dependencies": {
- "dagre-d3-renderer": "x.x.x",
- "electron-updater": "^2.16.1",
- "handlebars": "^4.0.11",
- "npm-font-open-sans": "^1.1.0",
- "protobufjs": "x.x.x"
- },
- "devDependencies": {
- "electron": "x.x.x",
- "electron-builder": "x.x.x"
- },
- "build": {
- "files": [
- "src/**/*"
- ],
- "appId": "com.lutzroeder.netron",
- "directories": {
- "buildResources": "setup"
- },
- "fileAssociations": {
- "ext": [
- "pb",
- "onnx"
- ],
- "name": "ONNX Model"
- },
- "mac": {
- "category": "public.app-category.developer-tools",
- "target": [
- "dmg",
- "zip"
- ]
- },
- "dmg": {
- "iconSize": 160,
- "contents": [
- {
- "x": 180,
- "y": 170
- },
- {
- "x": 480,
- "y": 170,
- "type": "link",
- "path": "/Applications"
- }
- ]
- },
- "linux": {
- "target": [
- "AppImage",
- "deb"
- ]
- },
- "win": {
- "target": [
- "nsis"
- ]
- },
- "nsis": {
- "perMachine": true
- }
- }
- }
|