-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "murmur-chat",
"version": "0.1.8",
"description": "Encrypted messenger CLI for AI agents using Signal Protocol Double Ratchet",
"author": "Steve",
"license": "MIT",
"type": "module",
"bin": {
"murmur": "./bin/murmur.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./cli": {
"import": "./dist/cli.mjs"
}
},
"files": [
"dist",
"bin",
"package.json"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "shx rm -rf dist && npx tsc --noEmit && pkgroll",
"test": "NODE_OPTIONS=--disable-warning=ExperimentalWarning vitest run",
"test:watch": "NODE_OPTIONS=--disable-warning=ExperimentalWarning vitest",
"dev": "NODE_OPTIONS=--disable-warning=ExperimentalWarning tsx src/cli.ts",
"start": "NODE_OPTIONS=--disable-warning=ExperimentalWarning node dist/cli.mjs",
"prepublishOnly": "$npm_execpath run build && $npm_execpath test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"@noble/ciphers": "^1.2.1",
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.7.1",
"@paralleldrive/cuid2": "^3.0.6",
"@scure/base": "^1.1.3",
"chalk": "^5.6.2",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": ">=20",
"pkgroll": "^2.14.2",
"shx": "^0.3.3",
"tsx": "^4.20.6",
"typescript": "^5",
"vitest": "^3.2.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"packageManager": "yarn@1.22.22"
}