@clauderecallhq/cli 0.77.1 → 0.77.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/dist/cli.js +234 -234
- package/package.json +5 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clauderecallhq/cli",
|
|
3
|
-
"version": "0.77.
|
|
3
|
+
"version": "0.77.3",
|
|
4
4
|
"description": "Never lose a Claude Code session again. Local, fast, searchable memory over every session you've ever run.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://clauderecall.com",
|
|
@@ -29,33 +29,7 @@
|
|
|
29
29
|
"LICENSE"
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
|
-
"
|
|
33
|
-
"build": "npm run build:cli && npm run build:tooling && npm run build:web",
|
|
34
|
-
"build:cli": "tsc && node scripts/build-bundle.mjs",
|
|
35
|
-
"build:tooling": "tsc -p tooling/tsconfig.json && mkdir -p dist/marketing/prospects && cp tooling/marketing/prospects/schema.sql dist/marketing/prospects/schema.sql && mkdir -p dist/marketing/cold-email/templates && cp -r tooling/marketing/cold-email/templates/defaults dist/marketing/cold-email/templates/defaults && mkdir -p dist/marketing/dashboard && cp tooling/marketing/dashboard/ui.html dist/marketing/dashboard/ui.html && mkdir -p dist/marketing/cold-email/dashboard/public && cp -r tooling/marketing/cold-email/dashboard/public/. dist/marketing/cold-email/dashboard/public/ && chmod +x dist/marketing/prospects/cli.js dist/marketing/scrapers/cli.js dist/marketing/cold-email/cli.js",
|
|
36
|
-
"build:web": "vite build",
|
|
37
|
-
"dev:web": "vite",
|
|
38
|
-
"start": "node dist/cli.js",
|
|
39
|
-
"typecheck": "tsc --noEmit",
|
|
40
|
-
"recall": "tsx src/cli.ts",
|
|
41
|
-
"test": "npm run test:unit",
|
|
42
|
-
"test:unit": "npm run build:cli && npm run build:tooling && node --experimental-test-module-mocks --test test/*.test.mjs",
|
|
43
|
-
"test:mcp": "npm run build:cli && node --test test/mcp.smoke.test.mjs",
|
|
44
|
-
"test:e2e": "playwright test",
|
|
45
|
-
"test:e2e:ui": "playwright test --ui",
|
|
46
|
-
"test:e2e:debug": "playwright test --debug",
|
|
47
|
-
"tiktok:follow": "tsx tooling/marketing/scrapers/tiktok-auto-follow.ts",
|
|
48
|
-
"version-bump": "node scripts/bump-versions.mjs",
|
|
49
|
-
"version-bump:dry": "node scripts/bump-versions.mjs --dry-run",
|
|
50
|
-
"installs": "node scripts/installs.mjs",
|
|
51
|
-
"deploy:site": "bash site/scripts/deploy/deploy-to-production.sh",
|
|
52
|
-
"deploy:site:skip-build": "bash site/scripts/deploy/deploy-to-production.sh --skip-build",
|
|
53
|
-
"deploy:site:dry-run": "bash site/scripts/deploy/deploy-to-production.sh --dry-run",
|
|
54
|
-
"prepare": "node scripts/prepare.mjs",
|
|
55
|
-
"postinstall": "node scripts/postinstall.mjs",
|
|
56
|
-
"verify:bundle-deps": "node scripts/verify-bundle-deps.mjs",
|
|
57
|
-
"check:versions": "node scripts/check-versions.mjs",
|
|
58
|
-
"prepublishOnly": "npm run check:versions && npm run build:cli && npm run verify:bundle-deps"
|
|
32
|
+
"postinstall": "node scripts/postinstall.mjs"
|
|
59
33
|
},
|
|
60
34
|
"keywords": [
|
|
61
35
|
"claude",
|
|
@@ -80,6 +54,9 @@
|
|
|
80
54
|
"x64",
|
|
81
55
|
"arm64"
|
|
82
56
|
],
|
|
57
|
+
"overrides": {
|
|
58
|
+
"onnxruntime-node": "1.23.2"
|
|
59
|
+
},
|
|
83
60
|
"dependencies": {
|
|
84
61
|
"@anthropic-ai/sdk": "^0.96.0",
|
|
85
62
|
"@hono/node-server": "^2.0.2",
|