-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 984 Bytes
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
{
"name": "servanda",
"version": "0.5.2-pre",
"private": true,
"description": "Servanda \u2014 reference implementation of the Servanda protocol",
"license": "Apache-2.0",
"author": "Nikola Katsarov (https://github.com/escapeboy)",
"homepage": "https://github.com/escapeboy/servanda#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/escapeboy/servanda.git"
},
"bugs": "https://github.com/escapeboy/servanda/issues",
"keywords": [
"servanda",
"commitments",
"protocol",
"ed25519",
"local-first",
"mcp"
],
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.2",
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"typecheck": "pnpm -r run build",
"gate:g0": "bash gates/g0-vectors.sh",
"gates": "bash gates/run-all.sh"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}