-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.63 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
{
"name": "falsify-js",
"version": "0.1.13",
"description": "JavaScript reference implementation of PRML (Pre-Registered ML Manifest) v0.1 — open spec for committing ML evaluation claims to a SHA-256 hash before the run. CC BY 4.0 spec; MIT code; byte-equivalent to the Python reference across 21 conformance vectors (13 v0.1 + 8 v0.2 RFC).",
"main": "index.js",
"module": "./index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
},
"./package.json": "./package.json",
"./linkage": "./linkage.js"
},
"bin": {
"falsify-js": "falsify.js"
},
"files": [
"falsify.js",
"linkage.js",
"index.js",
"index.mjs",
"test.js",
"LICENSE",
"README.md",
"CITATION.cff"
],
"scripts": {
"test": "node test.js",
"test-vectors": "node falsify.js test-vectors ../falsify-hackathon/spec/test-vectors/v0.1/test-vectors.json"
},
"engines": {
"node": ">=18"
},
"keywords": [
"prml",
"pre-registration",
"ml-evaluation",
"ai-safety",
"reproducibility",
"sha256",
"content-addressing",
"eu-ai-act",
"audit-trail",
"falsify"
],
"homepage": "https://falsify.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/studio-11-co/falsify-js.git"
},
"bugs": {
"url": "https://github.com/studio-11-co/falsify-js/issues"
},
"author": {
"name": "Cüneyt Öztürk",
"email": "hello@falsify.dev",
"url": "https://falsify.dev"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}