happy-coder 0.6.4 → 0.7.1-beta.2
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.cjs +1354 -690
- package/dist/index.mjs +1360 -696
- package/dist/lib.cjs +3 -11
- package/dist/lib.d.cts +162 -14
- package/dist/lib.d.mts +162 -14
- package/dist/lib.mjs +1 -1
- package/dist/{types-Dz5kZrVh.mjs → types-BZC9-exR.mjs} +413 -43
- package/dist/{types-BDtHM1DY.cjs → types-CzvFvJwf.cjs} +458 -89
- package/package.json +16 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "happy-coder",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1-beta.2",
|
|
4
4
|
"description": "Claude Code session sharing CLI",
|
|
5
5
|
"author": "Kirill Dubovitskiy",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,15 +44,21 @@
|
|
|
44
44
|
"package.json"
|
|
45
45
|
],
|
|
46
46
|
"scripts": {
|
|
47
|
-
"
|
|
47
|
+
"why do we need to build before running tests / dev?": "We need the binary to be built so we run daemon commands which directly run the binary - we don't want them to go out of sync or have custom spawn logic depending how we started happy",
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
49
|
+
"build": "shx rm -rf dist && npx tsc --noEmit && pkgroll",
|
|
50
|
+
"test": "yarn build && vitest run",
|
|
48
51
|
"test:watch": "vitest",
|
|
49
|
-
"
|
|
52
|
+
"test:integration-test-env": "yarn build && tsx --env-file .env.integration-test node_modules/.bin/vitest run",
|
|
53
|
+
"dev": "yarn build && npx tsx src/index.ts",
|
|
54
|
+
"dev:local-server": "yarn build && tsx --env-file .env.dev-local-server src/index.ts",
|
|
55
|
+
"dev:integration-test-env": "yarn build && tsx --env-file .env.integration-test src/index.ts",
|
|
50
56
|
"prepublishOnly": "yarn build && yarn test",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"publish
|
|
57
|
+
"minor:publish": "yarn build && npm version minor && npm publish",
|
|
58
|
+
"patch:publish": "yarn build && npm version patch && npm publish",
|
|
59
|
+
"version:prerelease": "yarn build && npm version prerelease --preid=beta",
|
|
60
|
+
"publish:prerelease": "npm publish --tag beta",
|
|
61
|
+
"beta:publish": "yarn version:prerelease && yarn publish:prerelease"
|
|
56
62
|
},
|
|
57
63
|
"dependencies": {
|
|
58
64
|
"@anthropic-ai/claude-code": "^1.0.73",
|
|
@@ -65,6 +71,8 @@
|
|
|
65
71
|
"axios": "^1.10.0",
|
|
66
72
|
"chalk": "^5.4.1",
|
|
67
73
|
"expo-server-sdk": "^3.15.0",
|
|
74
|
+
"fastify": "^5.5.0",
|
|
75
|
+
"fastify-type-provider-zod": "4.0.2",
|
|
68
76
|
"http-proxy": "^1.18.1",
|
|
69
77
|
"http-proxy-middleware": "^3.0.5",
|
|
70
78
|
"ink": "^6.1.0",
|