-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.89 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.89 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
75
76
77
78
79
80
{
"name": "appbun",
"version": "0.5.4",
"description": "Turn any webpage into a desktop app with one command using Electrobun.",
"license": "MIT",
"type": "module",
"bin": {
"appbun": "bin/appbun.js"
},
"files": [
"bin",
"dist",
"README.md",
"CONTRIBUTING.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.3.0"
},
"scripts": {
"clean": "node -e \"import('node:fs').then((fs) => fs.rmSync('dist', { recursive: true, force: true }))\"",
"build": "bun run clean && tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "bun test src",
"prepack": "bun run build",
"prepublishOnly": "bun run build",
"release:check": "bun run build && npm pack --dry-run",
"showcase:capture": "node scripts/capture-showcase.mjs"
},
"keywords": [
"electrobun",
"bun",
"desktop",
"cli",
"scaffold",
"webview",
"pake",
"website-to-desktop",
"web-app-wrapper",
"desktop-app-generator",
"macos-dmg",
"tauri-alternative",
"electron-alternative",
"website-to-app",
"desktop-wrapper",
"desktop-webview",
"website-wrapper",
"website-to-app-cli",
"cross-platform"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bigmacfive/appbun.git"
},
"homepage": "https://github.com/bigmacfive/appbun#readme",
"bugs": {
"url": "https://github.com/bigmacfive/appbun/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"cheerio": "^1.1.2",
"commander": "^14.0.1",
"icojs": "^0.20.1",
"picocolors": "^1.1.1",
"png-to-ico": "^2.1.8",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.3",
"@types/node": "^24.6.0",
"@types/pngjs": "^6.0.5",
"playwright": "^1.54.2",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.4"
}