-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1017 Bytes
/
package.json
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
{
"name": "media-provenance",
"version": "1.1.0",
"description": "A spec, library, and CLI for describing the origins of AI-generated images.",
"main": "index.js",
"bin": {
"media-provenance": "./cli.js",
"provenance": "./cli.js",
"prove": "./cli.js",
"prov": "./cli.js",
"mp": "./cli.js"
},
"scripts": {
"test": "standard --fix && npm run build && node --test test/*.test.js",
"lint": "standard --fix",
"build": "node script/build.js"
},
"repository": "https://github.com/zeke/media-provenance",
"keywords": [
"exif"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/)",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.1.0",
"dedent": "^1.5.3",
"download": "^8.0.0",
"exiftool-vendored": "^28.2.1",
"is-url": "^1.2.4",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.3"
},
"devDependencies": {
"standard": "^17.1.1"
}
}