-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "publedge",
"version": "0.1.1",
"mcpName": "io.github.snapsynapse/publedge",
"description": "MCP server and recordkeeping protocol for fact-specific written interpretations between two parties: JIAs, RMAs, no-action letters, advisory opinions, private letter rulings. Plain markdown, hash-pinned, gist-bound. The verifiable-records layer of the PAICE legal graph.",
"homepage": "https://publedge.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/snapsynapse/publedge.git"
},
"bugs": {
"url": "https://github.com/snapsynapse/publedge/issues"
},
"license": "Apache-2.0",
"author": "PAICE.work PBC <https://paice.work/>",
"keywords": [
"mcp",
"model-context-protocol",
"knowledge-base",
"ontology",
"static-site",
"knowledge-as-code",
"legal",
"regulatory",
"jia",
"rma",
"no-action-letter",
"private-letter-ruling",
"paice",
"paice-legal-graph",
"obligation-first"
],
"engines": {
"node": ">=20"
},
"bin": {
"publedge": "mcp-server.js"
},
"main": "mcp-server.js",
"files": [
"mcp-server.js",
"project.yml",
"scripts/lib/*.js",
"data/examples/instruments/*.md",
"data/examples/obligations/*.md",
"data/examples/authorities/*.md",
"data/examples/mapping/*.yml",
"mcp.json",
"README.md",
"LICENSE",
"LICENSE-APACHE",
"LICENSE-CC-BY-4.0",
"ATTRIBUTION.md",
"PROTOCOL.md"
],
"scripts": {
"build": "node scripts/build.js && node scripts/build-extras.js",
"build:kac": "node scripts/build.js",
"validate": "node scripts/validate.js",
"validate:of": "node scripts/validate-obligation-first.js",
"verify": "node scripts/verify.js",
"evals": "node scripts/evals.js",
"eval:record-schema": "node scripts/eval-record-schema.js",
"eval:schema-parity": "node scripts/eval-schema-parity.js",
"eval:authority-response": "node scripts/eval-authority-response.js",
"eval:clean-build": "node scripts/eval-clean-build.js",
"eval:route-inventory": "node scripts/eval-route-inventory.js",
"eval:discovery": "node scripts/eval-discovery.js",
"eval:mcp-contract": "node scripts/eval-mcp-contract.js",
"eval:mcp-parser-lockstep": "node scripts/eval-mcp-parser-lockstep.js",
"eval:content-source": "node scripts/eval-content-source.js",
"eval:verification-allowlist": "node scripts/eval-verification-allowlist.js",
"eval:redirects": "node scripts/eval-redirects.js",
"eval:deterministic-build": "node scripts/eval-deterministic-build.js",
"eval:manifest-scope": "node scripts/eval-manifest-scope.js",
"eval:links": "node scripts/eval-links.js",
"eval:verification-exit": "node scripts/eval-verification-exit.js"
}
}