use-pounce 0.1.0

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/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "use-pounce",
3
+ "version": "0.1.0",
4
+ "description": "Pair your phone with this machine in one command: npx use-pounce starts the Pounce bridge in the background and prints a QR to scan. Works over SSH — pairing rides an iroh p2p tunnel, no port-forwarding.",
5
+ "keywords": [
6
+ "claude-code",
7
+ "codex",
8
+ "coding-agents",
9
+ "cursor",
10
+ "iroh",
11
+ "pounce",
12
+ "qr",
13
+ "remote",
14
+ "ssh"
15
+ ],
16
+ "homepage": "https://use-pounce.com",
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/pounce-ai/pounce.git",
21
+ "directory": "apps/cli"
22
+ },
23
+ "bin": {
24
+ "pounce": "bin/pounce.mjs"
25
+ },
26
+ "files": [
27
+ "bin",
28
+ "dist",
29
+ "README.md"
30
+ ],
31
+ "type": "module",
32
+ "scripts": {
33
+ "build": "bun scripts/build.mjs",
34
+ "prepack": "bun scripts/build.mjs",
35
+ "test": "vitest run --passWithNoTests"
36
+ },
37
+ "dependencies": {
38
+ "@agentclientprotocol/claude-agent-acp": "^0.58.1",
39
+ "@agentclientprotocol/codex-acp": "^1.1.2",
40
+ "@agentclientprotocol/sdk": "^1.2.1",
41
+ "@wterm/core": "^0.3.0",
42
+ "qrcode": "^1.5.4",
43
+ "qrcode-terminal": "^0.12.0",
44
+ "zigpty": "^0.2.1"
45
+ },
46
+ "devDependencies": {
47
+ "vitest": "^2.1.0"
48
+ },
49
+ "engines": {
50
+ "node": ">=20"
51
+ }
52
+ }