zas-agent 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/CHANGELOG.md +29 -0
- package/LICENSE +21 -0
- package/README.md +286 -0
- package/dist/cli.js +1931 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zas-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server that lets a coding agent send files and notes into your Zas channels.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Sebastian Fernandez Quezada",
|
|
8
|
+
"homepage": "https://github.com/soke1556/zas-agent#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/soke1556/zas-agent.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": "https://github.com/soke1556/zas-agent/issues",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mcp",
|
|
16
|
+
"mcp-server",
|
|
17
|
+
"model-context-protocol",
|
|
18
|
+
"claude-code",
|
|
19
|
+
"codex",
|
|
20
|
+
"zas",
|
|
21
|
+
"end-to-end-encryption"
|
|
22
|
+
],
|
|
23
|
+
"mcpName": "io.github.soke1556/zas-agent",
|
|
24
|
+
"bin": {
|
|
25
|
+
"zas-agent": "dist/cli.js"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE",
|
|
31
|
+
"CHANGELOG.md"
|
|
32
|
+
],
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public",
|
|
38
|
+
"provenance": true
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "node build.mjs",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
44
|
+
"prepack": "node build.mjs"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
48
|
+
"@noble/ciphers": "^1.3.0",
|
|
49
|
+
"@noble/curves": "^1.9.0",
|
|
50
|
+
"@noble/hashes": "^1.8.0",
|
|
51
|
+
"hash-wasm": "^4.12.0",
|
|
52
|
+
"jimp": "^1.6.0",
|
|
53
|
+
"zod": "^3.25.76"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/node": "^22.0.0",
|
|
57
|
+
"esbuild": "^0.25.0",
|
|
58
|
+
"typescript": "^5.8.0",
|
|
59
|
+
"vitest": "^3.2.0"
|
|
60
|
+
}
|
|
61
|
+
}
|