-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "buntop",
"version": "0.0.2",
"description": "BunTop a tiny desktop framework using Bun and WebView",
"main": "index.js",
"exports": {
".": "./index.js",
"./client": "./client.js",
"./package.json": "./package.json"
},
"bin": {
"buntop": "bin/cli.js"
},
"files": [
"index.js",
"client.js",
"lib",
"build.js",
"build",
"bin",
"LICENSE",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "bun run build.js dev",
"build:alpha": "bun run build.js alpha",
"build:beta": "bun run build.js beta",
"build:release": "bun run build.js release"
},
"keywords": [
"buntop",
"desktop",
"framework",
"bun",
"webview",
"app"
],
"author": "Sectly",
"license": "MPL-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Sectly/buntop.git"
},
"homepage": "https://github.com/Sectly/buntop#readme",
"bugs": {
"url": "https://github.com/Sectly/buntop/issues"
},
"engines": {
"bun": ">=1.2.0"
},
"dependencies": {
"@trayjs/darwin-arm64": "^0.0.10",
"@trayjs/darwin-x64": "^0.0.10",
"@trayjs/linux-arm64": "^0.0.10",
"@trayjs/linux-x64": "^0.0.10",
"@trayjs/trayjs": "^0.0.10",
"@trayjs/win32-arm64": "^0.0.10",
"@trayjs/win32-x64": "^0.0.10",
"node-notifier": "^10.0.1",
"protocol-registry": "^2.0.0",
"webview-bun": "^2.4.0"
},
"trustedDependencies": [
"protocol-registry",
"sharp"
],
"devDependencies": {
"7zip-bin": "^5.2.0",
"icon-gen": "^5.0.0",
"tar": "^7.5.16"
}
}