@slock-ai/daemon 0.40.0 → 0.40.1
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 +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slock-ai/daemon",
|
|
3
|
-
"version": "0.40.
|
|
3
|
+
"version": "0.40.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"slock-daemon": "dist/index.js"
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"start": "tsx src/index.ts",
|
|
28
28
|
"build": "pnpm --filter @slock-ai/cli build && tsup && node -e \"require('fs').cpSync('../cli/dist','dist/cli',{recursive:true})\"",
|
|
29
29
|
"test": "node --import tsx --test --test-force-exit 'src/**/*.test.ts'",
|
|
30
|
+
"prepack": "pnpm run build",
|
|
30
31
|
"prepublishOnly": "pnpm run build",
|
|
31
32
|
"typecheck": "tsc --noEmit",
|
|
32
33
|
"release:patch": "npm version patch --no-git-tag-version && cd ../.. && pnpm install --lockfile-only && git add packages/daemon/package.json pnpm-lock.yaml && git commit -m \"chore: bump @slock-ai/daemon to v$(node -p \"require('./packages/daemon/package.json').version\")\" && git tag daemon-v$(node -p \"require('./packages/daemon/package.json').version\") && git push && git push --tags",
|
|
@@ -36,6 +37,7 @@
|
|
|
36
37
|
},
|
|
37
38
|
"dependencies": {
|
|
38
39
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
40
|
+
"commander": "^12.1.0",
|
|
39
41
|
"https-proxy-agent": "^7.0.6",
|
|
40
42
|
"undici": "^7.24.7",
|
|
41
43
|
"ws": "^8.20.0",
|