forked from tr1ckydev/webview-bun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 782 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
{
"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\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tr1ckydev/webview-bun.git"
},
"keywords": [
"bun",
"webview",
"webview-bun"
],
"author": "tr1ckydev",
"license": "MIT",
"bugs": {
"url": "https://github.com/tr1ckydev/webview-bun/issues"
},
"homepage": "https://github.com/tr1ckydev/webview-bun#readme",
"devDependencies": {
"@types/bun": "latest"
}
}