-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "butterframework",
"version": "1.2.5",
"type": "module",
"description": "A lightweight desktop app framework. Native webview, TypeScript on both sides, single-file binary output.",
"license": "MIT",
"bin": {
"butter": "./src/cli/index.ts"
},
"exports": {
".": "./src/runtime/index.ts",
"./types": "./src/types/index.ts",
"./plugins": "./src/plugins/index.ts",
"./native": "./src/native/index.ts",
"./dialog": "./src/dialog/index.ts"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"keywords": [
"desktop",
"webview",
"electron-alternative",
"bun",
"typescript",
"native",
"gui",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/wess/butter"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"test": "bun test tests/types.test.ts tests/config.test.ts tests/protocol.test.ts tests/ipc.test.ts tests/menu.test.ts tests/runtime.test.ts tests/shim.test.ts tests/doctor.test.ts tests/plugins.test.ts tests/dialog.test.ts tests/native.test.ts tests/cli.test.ts tests/allowlist.test.ts tests/bundle.test.ts tests/sign.test.ts tests/streaming.test.ts tests/window.test.ts tests/ipcround.test.ts tests/ring.test.ts tests/devloop.test.ts tests/shmemwin.test.ts && bun test tests/shmem.test.ts"
},
"engines": {
"bun": ">=1.2.0"
}
}