viveworker 0.7.0-beta.1 → 0.7.0-beta.3
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/README.md +39 -0
- package/package.json +3 -1
- package/scripts/share-cli.mjs +554 -3
- package/scripts/viveworker-bridge.mjs +3395 -218
- package/viveworker.env.example +8 -0
- package/web/app.css +916 -109
- package/web/app.js +1762 -43
- package/web/hazbase-passkey.js +107 -0
- package/web/i18n.js +276 -0
- package/web/sw.js +33 -15
package/viveworker.env.example
CHANGED
|
@@ -97,3 +97,11 @@ APP_SERVER_RESUME_LATEST=0
|
|
|
97
97
|
APP_SERVER_MODEL=
|
|
98
98
|
APP_SERVER_NOTIFY_APPROVALS=1
|
|
99
99
|
APP_SERVER_NOTIFY_COMPLETIONS=0
|
|
100
|
+
|
|
101
|
+
# hazBase wallet / x402 backend
|
|
102
|
+
HAZBASE_API_URL=https://api.hazbase.com
|
|
103
|
+
HAZBASE_DEVICE_LABEL=viveworker
|
|
104
|
+
# Require paired-device approval before `viveworker share pay` signs x402
|
|
105
|
+
# payments. Set to 0 only for trusted smoke tests / CI.
|
|
106
|
+
VIVEWORKER_PAYMENT_APPROVALS=1
|
|
107
|
+
VIVEWORKER_PAYMENT_APPROVAL_TIMEOUT_SEC=600
|