-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "bunmaska",
"version": "0.1.0-alpha.6",
"description": "A drop-in Electron replacement on Bun and your OS's own WebKit. No bundled Chromium, native modules that are just .ts files.",
"keywords": [
"electron",
"electron-alternative",
"electron-replacement",
"bun",
"desktop",
"desktop-app",
"webkit",
"no-chromium",
"system-webview",
"cross-platform",
"gui",
"bun-ffi",
"ffi",
"native-modules",
"wkwebview",
"webkitgtk",
"electrobun",
"tauri-alternative",
"browserwindow",
"ipc"
],
"license": "MIT",
"author": "Indrajeet O.",
"homepage": "https://bunmaska.org",
"repository": {
"type": "git",
"url": "git+https://github.com/ipfizz/bunmaska.git"
},
"bugs": {
"url": "https://github.com/ipfizz/bunmaska/issues"
},
"type": "module",
"bin": {
"bunmaska": "src/cli/index.ts"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./main": {
"types": "./src/main/index.ts",
"import": "./src/main/index.ts"
},
"./renderer": {
"types": "./src/renderer/index.ts",
"import": "./src/renderer/index.ts"
},
"./config": {
"types": "./src/config.ts",
"import": "./src/config.ts"
},
"./electron": {
"types": "./src/electron.ts",
"import": "./src/electron.ts"
}
},
"files": [
"src",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.3.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"type-check": "tsc --noEmit",
"test": "bun test --timeout 30000",
"test:watch": "bun test --watch",
"test:budget": "bun scripts/check-test-budget.ts",
"test:coverage": "bun test --timeout 30000 --coverage",
"test:coverage:lcov": "bun test --timeout 30000 --coverage --coverage-reporter=lcov --coverage-reporter=text",
"validate": "bun run format:check && bun run lint && bun run type-check && bun run test:budget",
"validate:windows": "bun run format:check && bun run lint && bun run type-check && bun test tests/unit/main/platform/windows tests/integration/windows --timeout 60000",
"pack:check": "npm pack --dry-run",
"prepublishOnly": "bun run validate",
"setup:hooks": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/bun": "latest",
"typescript": "6.0.3"
}
}