master
json 146 lines 3.41 KB
Raw
1 {
2 "$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/1.5.4/tooling/cli/schema.json",
3 "build": {
4 "beforeBuildCommand": "pnpm build",
5 "beforeDevCommand": "pnpm dev",
6 "devPath": "http://localhost:8080",
7 "distDir": "../dist"
8 },
9 "package": {
10 "productName": "Svara",
11 "version": "0.4.0"
12 },
13 "tauri": {
14 "allowlist": {
15 "all": false,
16 "shell": {
17 "all": false,
18 "open": true
19 },
20 "clipboard": {
21 "all": false,
22 "readText": true,
23 "writeText": true
24 },
25 "fs": {
26 "all": false,
27 "copyFile": true,
28 "createDir": true,
29 "exists": true,
30 "readDir": true,
31 "readFile": true,
32 "removeDir": false,
33 "removeFile": false,
34 "renameFile": true,
35 "scope": ["$HOME/**", "$APPCONFIG/**"],
36 "writeFile": true
37 },
38 "path": {
39 "all": true
40 },
41 "dialog": {
42 "all": false,
43 "ask": true,
44 "confirm": true,
45 "message": false,
46 "open": true,
47 "save": true
48 },
49 "window": {
50 "all": false,
51 "center": true,
52 "close": true,
53 "create": true,
54 "hide": true,
55 "maximize": true,
56 "minimize": true,
57 "print": true,
58 "requestUserAttention": false,
59 "setAlwaysOnTop": false,
60 "setCursorGrab": false,
61 "setCursorIcon": false,
62 "setCursorPosition": false,
63 "setCursorVisible": false,
64 "setDecorations": true,
65 "setFocus": true,
66 "setFullscreen": true,
67 "setIcon": true,
68 "setIgnoreCursorEvents": false,
69 "setMaxSize": false,
70 "setMinSize": false,
71 "setPosition": false,
72 "setResizable": false,
73 "setSize": false,
74 "setSkipTaskbar": false,
75 "setTitle": false,
76 "show": true,
77 "startDragging": true,
78 "unmaximize": true,
79 "unminimize": true
80 },
81 "process": {
82 "all": false,
83 "exit": true,
84 "relaunch": true,
85 "relaunchDangerousAllowSymlinkMacos": false
86 }
87 },
88 "bundle": {
89 "active": true,
90 "category": "DeveloperTool",
91 "copyright": "",
92 "deb": {
93 "depends": []
94 },
95 "externalBin": [],
96 "icon": [
97 "icons/32x32.png",
98 "icons/128x128.png",
99 "icons/128x128@2x.png",
100 "icons/icon.icns",
101 "icons/icon.ico"
102 ],
103 "identifier": "com.svara.app",
104 "longDescription": "",
105 "macOS": {
106 "entitlements": null,
107 "exceptionDomain": "",
108 "frameworks": ["AppKit", "WebKit", "Security"],
109 "providerShortName": null,
110 "signingIdentity": null,
111 "minimumSystemVersion": "10.13"
112 },
113 "resources": [],
114 "shortDescription": "",
115 "targets": "all",
116 "windows": {
117 "certificateThumbprint": null,
118 "digestAlgorithm": "sha256",
119 "timestampUrl": "",
120 "webviewInstallMode": {
121 "type": "downloadBootstrapper"
122 }
123 }
124 },
125 "security": {
126 "csp": null
127 },
128 "updater": {
129 "active": false
130 },
131 "windows": [
132 {
133 "fullscreen": false,
134 "height": 600,
135 "resizable": true,
136 "title": "Svara",
137 "width": 800,
138 "minWidth": 680,
139 "minHeight": 430,
140 "decorations": false,
141 "fileDropEnabled": false,
142 "maximized": true
143 }
144 ]
145 }
146 }