-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.84 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
{
"name": "@blocksifr/ttp-protocol",
"version": "0.1.0",
"description": "Trust Transfer Protocol \u2014 open trustworthiness primitives for autonomous systems, non-human identities, and runtime authority.",
"private": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"README.md",
"LICENSE",
"SECURITY.md",
"SPECIFICATION.md",
"CHANGELOG.md",
"protocol/schemas/",
"receipts/schemas/",
"specs/schemas/"
],
"engines": {
"node": ">=18"
},
"exports": {
".": "./src/index.mjs",
"./attestation": "./src/attestation.mjs",
"./decay": "./src/decay.mjs",
"./delegation": "./src/delegation.mjs",
"./transfer": "./src/transfer.mjs",
"./trust-proof": "./src/trust_proof.mjs",
"./trust-route": "./src/trust_route.mjs",
"./trust-threshold": "./src/trust_threshold.mjs",
"./types": "./src/types.mjs",
"./errors": "./src/errors.mjs"
},
"scripts": {
"demo": "node examples/local-trust-gate-demo.mjs",
"ttp": "node src/index.js",
"build:sdk": "npm install --prefix sdk/typescript && npm run build --prefix sdk/typescript",
"build:trust-authority": "npm install --prefix reference-implementations/trust-authority && npm run build --prefix reference-implementations/trust-authority",
"test": "node --test tests/*.test.mjs packages/trust-routing-engine/tests/*.test.mjs packages/pctr/tests/*.test.mjs",
"test:ttp": "node --test tests/*.test.mjs",
"test:trust-routing": "node --test packages/trust-routing-engine/tests/*.test.mjs",
"check:examples": "node src/index.js check examples/01-basic-agent.ttp && node src/index.js check examples/02-trust-decay.ttp && node src/index.js check examples/03-threshold-proof.ttp && node src/index.js check examples/04-delegated-trust.ttp && node src/index.js check examples/05-agent-tool-trust-wrapper.ttp && node src/index.js check examples/06-cicd-pipeline-trust-proof.ttp && node src/index.js check examples/07-api-client-trust-proof.ttp && node src/index.js check examples/08-msp-mssp-trust-proof.ttp",
"assets:fonts": "python3 assets/brand/embed-fonts.py",
"assets:social": "node assets/brand/render-png.mjs assets/social-preview.svg assets/social-preview.png 1280",
"assets": "npm run assets:fonts && npm run assets:social",
"test:pctr": "node --test packages/pctr/tests/*.test.mjs",
"pctr": "node packages/pctr/bin/pctr.mjs",
"demo:pctr": "node examples/pctr-consequence-change-demo.mjs",
"demo:pctr-fabric": "node examples/pctr-universal-fabric-demo.mjs",
"assets:pctr": "node packages/pctr/scripts/render-terminal-svg.mjs",
"demo:pctr-agt": "node examples/pctr-agt-bridge-demo.mjs"
},
"devDependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@resvg/resvg-js": "^2.6.2"
}
}