sshclient-wasm 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/artifacts.json +1 -0
- package/dist/config.yaml +136 -0
- package/dist/metadata.json +1 -0
- package/dist/sshclient.wasm +0 -0
- package/package.json +6 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"name":"metadata.json","path":"dist/metadata.json","internal_type":35,"type":"Metadata"},{"name":"sshclient.wasm","path":"dist/sshclient.wasm","goos":"js","goarch":"wasm","target":"js_wasm","internal_type":4,"type":"Binary","extra":{"Binary":"sshclient","Builder":"go","Ext":".wasm","ID":"sshclient"}}]
|
package/dist/config.yaml
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
project_name: sshclient-wasm
|
|
3
|
+
release:
|
|
4
|
+
github:
|
|
5
|
+
owner: VerdigrisTech
|
|
6
|
+
name: sshclient-wasm
|
|
7
|
+
prerelease: auto
|
|
8
|
+
name_template: '{{.Tag}}'
|
|
9
|
+
builds:
|
|
10
|
+
- id: sshclient
|
|
11
|
+
goos:
|
|
12
|
+
- js
|
|
13
|
+
goarch:
|
|
14
|
+
- wasm
|
|
15
|
+
goamd64:
|
|
16
|
+
- v1
|
|
17
|
+
go386:
|
|
18
|
+
- sse2
|
|
19
|
+
goarm:
|
|
20
|
+
- "6"
|
|
21
|
+
goarm64:
|
|
22
|
+
- v8.0
|
|
23
|
+
gomips:
|
|
24
|
+
- hardfloat
|
|
25
|
+
goppc64:
|
|
26
|
+
- power8
|
|
27
|
+
goriscv64:
|
|
28
|
+
- rva20u64
|
|
29
|
+
targets:
|
|
30
|
+
- js_wasm
|
|
31
|
+
dir: .
|
|
32
|
+
main: ./main.go
|
|
33
|
+
binary: sshclient
|
|
34
|
+
hooks:
|
|
35
|
+
post:
|
|
36
|
+
- cmd: sh -c 'cp "$(go env GOROOT)/lib/wasm/wasm_exec.js" dist/wasm_exec.js'
|
|
37
|
+
- cmd: pnpm build:ts
|
|
38
|
+
builder: go
|
|
39
|
+
tool: go
|
|
40
|
+
command: build
|
|
41
|
+
no_unique_dist_dir: "true"
|
|
42
|
+
ldflags:
|
|
43
|
+
- -s -w
|
|
44
|
+
env:
|
|
45
|
+
- CGO_ENABLED=0
|
|
46
|
+
archives:
|
|
47
|
+
- id: wasm-archive
|
|
48
|
+
builds_info:
|
|
49
|
+
mode: 493
|
|
50
|
+
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
|
|
51
|
+
formats:
|
|
52
|
+
- tar.gz
|
|
53
|
+
files:
|
|
54
|
+
- src: dist/sshclient.wasm
|
|
55
|
+
- src: dist/wasm_exec.js
|
|
56
|
+
- src: lib/**/*
|
|
57
|
+
- src: package.json
|
|
58
|
+
- src: README.md
|
|
59
|
+
- src: LICENSE
|
|
60
|
+
snapshot:
|
|
61
|
+
version_template: '{{ incpatch .Version }}-next'
|
|
62
|
+
checksum:
|
|
63
|
+
name_template: checksums.txt
|
|
64
|
+
algorithm: sha256
|
|
65
|
+
docker_digest:
|
|
66
|
+
name_template: digests.txt
|
|
67
|
+
changelog:
|
|
68
|
+
disable: "true"
|
|
69
|
+
format: '{{ .SHA }} {{ .Message }}'
|
|
70
|
+
dist: dist
|
|
71
|
+
env_files:
|
|
72
|
+
github_token: ~/.config/goreleaser/github_token
|
|
73
|
+
gitlab_token: ~/.config/goreleaser/gitlab_token
|
|
74
|
+
gitea_token: ~/.config/goreleaser/gitea_token
|
|
75
|
+
before:
|
|
76
|
+
hooks:
|
|
77
|
+
- go mod tidy
|
|
78
|
+
- go mod download
|
|
79
|
+
source:
|
|
80
|
+
name_template: '{{ .ProjectName }}-{{ .Version }}'
|
|
81
|
+
format: tar.gz
|
|
82
|
+
gomod:
|
|
83
|
+
gobinary: go
|
|
84
|
+
announce:
|
|
85
|
+
twitter:
|
|
86
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
87
|
+
mastodon:
|
|
88
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
89
|
+
server: ""
|
|
90
|
+
reddit:
|
|
91
|
+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
|
|
92
|
+
url_template: '{{ .ReleaseURL }}'
|
|
93
|
+
slack:
|
|
94
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
95
|
+
username: GoReleaser
|
|
96
|
+
discord:
|
|
97
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
98
|
+
author: GoReleaser
|
|
99
|
+
color: "3888754"
|
|
100
|
+
icon_url: https://goreleaser.com/static/avatar.png
|
|
101
|
+
teams:
|
|
102
|
+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
|
|
103
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
104
|
+
color: '#2D313E'
|
|
105
|
+
icon_url: https://goreleaser.com/static/avatar.png
|
|
106
|
+
smtp:
|
|
107
|
+
subject_template: '{{ .ProjectName }} {{ .Tag }} is out!'
|
|
108
|
+
body_template: 'You can view details from: {{ .ReleaseURL }}'
|
|
109
|
+
mattermost:
|
|
110
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
111
|
+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
|
|
112
|
+
username: GoReleaser
|
|
113
|
+
linkedin:
|
|
114
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
115
|
+
telegram:
|
|
116
|
+
message_template: '{{ mdv2escape .ProjectName }} {{ mdv2escape .Tag }} is out{{ mdv2escape "!" }} Check it out at {{ mdv2escape .ReleaseURL }}'
|
|
117
|
+
parse_mode: MarkdownV2
|
|
118
|
+
webhook:
|
|
119
|
+
message_template: '{ "message": "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"}'
|
|
120
|
+
content_type: application/json; charset=utf-8
|
|
121
|
+
expected_status_codes:
|
|
122
|
+
- 200
|
|
123
|
+
- 201
|
|
124
|
+
- 202
|
|
125
|
+
- 204
|
|
126
|
+
opencollective:
|
|
127
|
+
title_template: '{{ .Tag }}'
|
|
128
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out!<br/>Check it out at <a href="{{ .ReleaseURL }}">{{ .ReleaseURL }}</a>'
|
|
129
|
+
bluesky:
|
|
130
|
+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
131
|
+
git:
|
|
132
|
+
tag_sort: -version:refname
|
|
133
|
+
github_urls:
|
|
134
|
+
download: https://github.com
|
|
135
|
+
gitlab_urls:
|
|
136
|
+
download: https://gitlab.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"project_name":"sshclient-wasm","tag":"v0.1.3","previous_tag":"v0.1.2","version":"0.1.3","commit":"3913561bc5f56fb1b406f2ebf68ebfc1c33c32eb","date":"2025-09-09T02:17:19.043144263Z","runtime":{"goos":"linux","goarch":"amd64"}}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sshclient-wasm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "WebAssembly-based SSH client for the browser with packet interception hooks",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"url": "https://github.com/VerdigrisTech/sshclient-wasm.git"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@goreleaser/goreleaser": "^2.
|
|
50
|
+
"@goreleaser/goreleaser": "^2.9.0",
|
|
51
51
|
"@types/node": "^20.11.24",
|
|
52
52
|
"@types/protobufjs": "^6.0.0",
|
|
53
53
|
"protobufjs-cli": "^1.1.3",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"scripts": {
|
|
68
68
|
"build:wasm": "goreleaser build",
|
|
69
69
|
"build:wasm:dev": "goreleaser build --snapshot --clean",
|
|
70
|
-
"build:wasm:release": "goreleaser build --clean",
|
|
70
|
+
"build:wasm:release": "goreleaser build --clean --skip=validate",
|
|
71
71
|
"build:ts": "vite build",
|
|
72
|
-
"build": "pnpm run build:wasm
|
|
73
|
-
"build:dev": "pnpm run build:wasm:dev
|
|
74
|
-
"build:release": "pnpm run build:wasm:release
|
|
72
|
+
"build": "pnpm run build:wasm",
|
|
73
|
+
"build:dev": "pnpm run build:wasm:dev",
|
|
74
|
+
"build:release": "pnpm run build:wasm:release",
|
|
75
75
|
"clean": "rm -rf dist/",
|
|
76
76
|
"test": "vitest",
|
|
77
77
|
"test:run": "vitest run",
|