-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.55 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "webview",
"version": "0.0.10",
"description": "Binary webview with golang",
"engines": {
"go": "1.16"
},
"os": [
"darwin",
"linux",
"win32"
],
"contributors": [
],
"scripts": {
"prepare": "husky install",
"svn": "bash scripts/release.sh",
"release": "standard-version",
"prerelease": "standard-version -- --prerelease",
"fix": "standard-version -- --release-as minor",
"node:run": "node cli.js --url=http://google.com",
"deno": "deno run --allow-all --watch webviewd.ts --url=http://google.com --title=test",
"deno:tools": "deno info && deno fmt webviewd.ts && deno lint webviewd.ts",
"deno:bundle": "deno bundle webviewd.ts bin/webview.bundle.js",
"deno:bundle:run": "deno run --allow-env --allow-run bin/webview.bundle.js --title=test --dir=static",
"deno:build": "deno compile --allow-env --allow-run --output bin/denowebview webviewd.ts",
"deno:build:run": "bin/denowebview --dir=static"
},
"bin": {
"webview": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephendltg/go-webview.git"
},
"keywords": [
"golang",
"webview"
],
"author": "stephendltg",
"license": "ISC",
"bugs": {
"url": "https://github.com/stephendltg/go-webview/issues"
},
"homepage": "https://github.com/stephendltg/go-webview#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"husky": "^7.0.1",
"standard-version": "^9.3.1"
},
"dependencies": {}
}