| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "name": "netron",
- "productName": "Netron",
- "author": {
- "name": "Lutz Roeder",
- "email": "[email protected]",
- "url": "https://www.lutzroeder.com"
- },
- "version": "5.4.5",
- "description": "Visualizer for neural network, deep learning, and machine learning models",
- "license": "MIT",
- "repository": "lutzroeder/netron",
- "main": "source/app.js",
- "scripts": {
- "postinstall": "electron-builder install-app-deps",
- "start": "[ -d node_modules ] || npm install && npx electron .",
- "server": "node ./publish/server.js"
- },
- "dependencies": {
- "electron-updater": "4.6.1"
- },
- "devDependencies": {
- "electron": "16.0.4",
- "electron-builder": "22.14.5",
- "electron-notarize": "1.1.1",
- "eslint": "8.4.1"
- },
- "eslintConfig": {
- "env": {
- "es6": true,
- "browser": true,
- "node": true
- },
- "extends": "eslint:recommended",
- "parserOptions": {
- "ecmaVersion": 2015,
- "sourceType": "module"
- },
- "rules": {
- "brace-style": [
- "error",
- "stroustrup",
- {
- "allowSingleLine": true
- }
- ],
- "indent": [
- "error",
- 4,
- {
- "SwitchCase": 1
- }
- ],
- "linebreak-style": "off",
- "no-trailing-spaces": "error",
- "no-console": "error",
- "prefer-const": [
- "error",
- {
- "destructuring": "all"
- }
- ],
- "semi": [
- "error",
- "always"
- ]
- },
- "globals": {
- "flatbuffers": "readonly",
- "protobuf": "readonly"
- }
- }
- }
|