-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 938 Bytes
/
package.json
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
{
"name": "webview-bun",
"description": "Bun bindings for webview, a tiny library for creating web-based desktop GUIs.",
"version": "2.3.0",
"type": "module",
"module": "src/index.ts",
"main": "src/index.ts",
"files": [
"src/",
"build/"
],
"scripts": {
"build": "bun scripts/build.ts",
"clean": "bun exec \"rm -rf webview/build\"",
"pretty": "bunx --bun prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tr1ckydev/webview-bun.git"
},
"keywords": [
"bun",
"webview",
"webview-bun"
],
"author": "tr1ckydev",
"license": "MIT",
"contributors": [
"citkane",
"WebReflection",
"StrangeBytesDev"
],
"bugs": {
"url": "https://github.com/tr1ckydev/webview-bun/issues"
},
"homepage": "https://github.com/tr1ckydev/webview-bun#readme",
"devDependencies": {
"@types/bun": "latest",
"prettier": "3.3.3"
}
}