-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.24 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.24 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
{
"name": "@certifieddata/reference-impl",
"version": "0.1.0",
"private": true,
"description": "Reference implementation: a high-risk AI system logging EU AI Act Article 12 evidence with CertifiedData.io's Decision Ledger.",
"type": "module",
"main": "dist/app.js",
"engines": {
"node": ">=20"
},
"license": "MIT",
"author": "CertifiedData.io",
"repository": {
"type": "git",
"url": "git+https://github.com/certifieddata/reference-impl.git"
},
"homepage": "https://github.com/certifieddata/reference-impl#readme",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"fixtures": "node fixtures/generate.mjs",
"test": "tsc -p tsconfig.json && node --test dist/smoke.test.js",
"start": "node dist/server.js",
"example:01": "tsc -p tsconfig.json && node dist/examples/01-log-decision.js",
"example:02": "tsc -p tsconfig.json && node dist/examples/02-verify-training-data.js",
"example:03": "tsc -p tsconfig.json && node dist/examples/03-export-evidence.js"
},
"dependencies": {
"@certifieddata/verify": "file:../verify",
"hono": "^4.6.0",
"@hono/node-server": "^1.13.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.6.0"
}
}