12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "build": {
- "beforeDevCommand": "pnpm dev",
- "beforeBuildCommand": "pnpm build",
- "devPath": "http://localhost:3000",
- "distDir": "../dist",
- "withGlobalTauri": false
- },
- "package": {
- "productName": "Hoppscotch",
- "version": "24.10.2"
- },
- "tauri": {
- "allowlist": {
- "all": false,
- "shell": {
- "all": false,
- "open": true
- },
- "os": {
- "all": true
- },
- "fs": {
- "writeFile": true
- },
- "dialog": {
- "save": true
- },
- "http": {
- "all": true,
- "request": true,
- "scope": ["http://*", "https://*", "wss://*"]
- },
- "window": {
- "startDragging": true
- }
- },
- "bundle": {
- "active": true,
- "category": "DeveloperTool",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ],
- "identifier": "io.hoppscotch.desktop",
- "targets": "all"
- },
- "security": {
- "csp": null
- },
- "updater": {
- "active": false
- },
- "windows": [
- {
- "label": "main",
- "title": "Hoppscotch",
- "visible": false,
- "fullscreen": false,
- "resizable": true,
- "width": 800,
- "height": 600,
- "fileDropEnabled": false
- }
- ]
- }
- }
|