happy-coder 0.1.3 → 0.1.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.
Files changed (3) hide show
  1. package/dist/index.cjs +1458 -977
  2. package/dist/index.mjs +1455 -974
  3. package/package.json +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happy-coder",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Claude Code session sharing CLI",
5
5
  "author": "Kirill Dubovitskiy",
6
6
  "license": "MIT",
@@ -32,20 +32,22 @@
32
32
  "test": "vitest run",
33
33
  "test:watch": "vitest",
34
34
  "build": "pkgroll",
35
- "prepublishOnly": "yarn build && yarn test",
36
- "dev": "yarn build && DEBUG=1 ./bin/happy"
35
+ "prepublishOnly": "tsc --noEmit && yarn build && yarn test",
36
+ "dev": "npx tsx --env-file .env.sample src/index.ts",
37
+ "dev:local": "HANDY_SERVER_URL=http://localhost:3005 npx tsx --env-file .env.sample src/index.ts"
37
38
  },
38
39
  "dependencies": {
39
40
  "@anthropic-ai/claude-code": "^1.0.51",
41
+ "@anthropic-ai/sdk": "^0.56.0",
40
42
  "@modelcontextprotocol/sdk": "^1.15.1",
41
43
  "@types/qrcode-terminal": "^0.12.2",
42
44
  "axios": "^1.10.0",
43
45
  "chalk": "^5.4.1",
44
- "node-pty": "^1.0.0",
46
+ "expo-server-sdk": "^3.15.0",
45
47
  "qrcode-terminal": "^0.12.0",
46
48
  "socket.io-client": "^4.8.1",
47
49
  "tweetnacl": "^1.0.3",
48
- "zod": "^4.0.5"
50
+ "zod": "^3.23.8"
49
51
  },
50
52
  "devDependencies": {
51
53
  "@eslint/compat": "^1",