iuna

iuna - experimental devnet protocol
git clone https://iuna.jhx.app/git/iuna.git
Log | Files | Refs | README | LICENSE

tauri.conf.json (1212B)


      1 {
      2   "$schema": "https://schema.tauri.app/config/2",
      3   "productName": "iuna",
      4   "version": "0.3.0",
      5   "identifier": "labs.iuna.desktop",
      6   "build": {
      7     "beforeDevCommand": "",
      8     "beforeBuildCommand": "",
      9     "frontendDist": "../desktop"
     10   },
     11   "app": {
     12     "windows": [
     13       {
     14         "title": "iuna",
     15         "width": 1180,
     16         "height": 820,
     17         "minWidth": 860,
     18         "minHeight": 640,
     19         "url": "index.html"
     20       }
     21     ],
     22     "security": {
     23       "csp": "default-src 'self'; connect-src http://127.0.0.1:18661; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'"
     24     }
     25   },
     26   "bundle": {
     27     "active": true,
     28     "targets": "all",
     29     "externalBin": [
     30       "binaries/iuna-sidecar"
     31     ],
     32     "icon": [
     33       "icons/32x32.png",
     34       "icons/128x128.png",
     35       "icons/128x128@2x.png",
     36       "icons/icon.icns",
     37       "icons/icon.ico"
     38     ],
     39     "category": "DeveloperTool",
     40     "shortDescription": "Local iuna devnet node",
     41     "longDescription": "Runs a local iuna devnet node and opens its management UI.",
     42     "windows": {
     43       "webviewInstallMode": {
     44         "type": "downloadBootstrapper"
     45       }
     46     },
     47     "macOS": {
     48       "minimumSystemVersion": "11.0"
     49     }
     50   }
     51 }