-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuntopconfig.json
More file actions
54 lines (54 loc) · 1.07 KB
/
Copy pathbuntopconfig.json
File metadata and controls
54 lines (54 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "buntop-app",
"entry": "examples/basic.js",
"outDir": "dist",
"buildBin": "build-bin",
"icon": "./examples/icon.png",
"license": "./LICENSE",
"identifier": "online.sectly.buntop-app",
"title": "BunTop App",
"publisher": "Sectly",
"version": "0.0.1",
"copyright": "Copyright 2026 Sectly",
"channels": {
"dev": {
"targets": [
"current"
],
"minify": false,
"sourcemap": true,
"bytecode": false
},
"alpha": {
"targets": [
"current"
],
"minify": true,
"sourcemap": true,
"bytecode": false
},
"beta": {
"targets": [
"bun-windows-x64",
"bun-linux-x64",
"bun-darwin-x64",
"bun-darwin-arm64"
],
"minify": true,
"sourcemap": false,
"bytecode": false
},
"release": {
"targets": [
"bun-windows-x64",
"bun-linux-x64",
"bun-linux-arm64",
"bun-darwin-x64",
"bun-darwin-arm64"
],
"minify": true,
"sourcemap": false,
"bytecode": false
}
}
}