-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1002 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
{
"name": "student-data-access-audit-stream",
"version": "0.1.0",
"description": "Hash-chained audit-stream event schema + reference verifier for AI tool reads of student records under FERPA / COPPA / state student-data-privacy law. Part of the Kinetic Gain Protocol Suite.",
"license": "MIT",
"author": "Miz Causevic",
"type": "module",
"private": true,
"bin": {
"student-event-verify": "./src/verify.mjs"
},
"scripts": {
"verify": "node src/verify.mjs",
"build-examples": "node src/build-examples.mjs",
"verify-all": "for f in examples/*.json; do node src/verify.mjs \"$f\" || exit 1; done"
},
"repository": {
"type": "git",
"url": "https://github.com/mizcausevic-dev/student-data-access-audit-stream"
},
"homepage": "https://suite.kineticgain.com",
"keywords": [
"ai-governance",
"audit-stream",
"edtech",
"ferpa",
"coppa",
"student-privacy",
"ceds",
"ed-fi",
"kinetic-gain-protocol-suite"
]
}