-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.05 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
{
"name": "@telecode/protocol",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "telecode's wire contract — shared zod schemas and end-to-end crypto helpers.",
"license": "AGPL-3.0-only",
"author": "Pouyan Jahangiri",
"homepage": "https://telecode.io",
"repository": {
"type": "git",
"url": "git+https://github.com/PouyanJay/telecode.git",
"directory": "packages/protocol"
},
"bugs": {
"url": "https://github.com/PouyanJay/telecode/issues"
},
"keywords": [
"telecode",
"end-to-end-encryption",
"x25519",
"zod",
"protocol"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"!src/**/*.test.ts"
],
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"lint": "eslint ."
},
"dependencies": {
"tweetnacl": "^1.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}