@p697/clawket 0.3.4 → 0.3.5
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/index.js +1 -1
- package/package.json +14 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@p697/clawket",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Clawket CLI for pairing and running the Relay bridge runtime",
|
|
@@ -21,12 +21,22 @@
|
|
|
21
21
|
"build:bundle": "npm run --workspace @clawket/bridge-core build && npm run --workspace @clawket/bridge-runtime build && npx tsup src/index.ts --format esm --platform node --target node20 --clean --no-external @clawket/bridge-core --no-external @clawket/bridge-runtime --external ws --external qrcode-terminal",
|
|
22
22
|
"build": "npm run build:bundle && node scripts/obfuscate.mjs",
|
|
23
23
|
"typecheck": "npm run --workspace @clawket/bridge-core build && npm run --workspace @clawket/bridge-runtime build && tsc -p tsconfig.json --noEmit",
|
|
24
|
-
"test": "vitest run --passWithNoTests",
|
|
24
|
+
"test": "npm run --workspace @clawket/bridge-core build && npm run --workspace @clawket/bridge-runtime build && vitest run --passWithNoTests",
|
|
25
|
+
"status": "node scripts/run-command.mjs status",
|
|
26
|
+
"doctor": "node scripts/run-command.mjs doctor",
|
|
27
|
+
"logs": "node scripts/run-command.mjs logs",
|
|
28
|
+
"install": "node scripts/run-command.mjs install",
|
|
29
|
+
"start": "node scripts/run-command.mjs start",
|
|
30
|
+
"restart": "node scripts/run-command.mjs restart",
|
|
31
|
+
"stop": "node scripts/run-command.mjs stop",
|
|
32
|
+
"uninstall": "node scripts/run-command.mjs uninstall",
|
|
33
|
+
"reset": "node scripts/run-command.mjs reset",
|
|
34
|
+
"refresh-code": "node scripts/run-command.mjs refresh-code",
|
|
25
35
|
"verify:package": "node scripts/verify-package.mjs",
|
|
26
36
|
"prepack": "npm run build && npm run verify:package",
|
|
27
37
|
"publish:dry-run": "npm publish --dry-run",
|
|
28
|
-
"pair": "
|
|
29
|
-
"run": "
|
|
38
|
+
"pair": "node scripts/run-command.mjs pair",
|
|
39
|
+
"run": "node scripts/run-command.mjs run"
|
|
30
40
|
},
|
|
31
41
|
"dependencies": {
|
|
32
42
|
"qrcode": "^1.5.4",
|