-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 1.1 KB
/
deno.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "@anchr/photo-bounty",
"version": "0.1.0",
"exports": {
".": "./src/mod.ts",
"./geo": "./src/geo.ts",
"./c2pa-validation": "./src/c2pa-validation.ts",
"./exif-validation": "./src/exif-validation.ts",
"./proofmode-validation": "./src/proofmode-validation.ts",
"./ai-content-check": "./src/ai-content-check.ts",
"./integrity-store": "./src/integrity-store.ts"
},
"imports": {
"@anchr/core-runtime": "../core-runtime/src/mod.ts",
"@anchr/core-runtime/logger": "../core-runtime/src/logger.ts",
"@anthropic-ai/sdk": "npm:@anthropic-ai/sdk@^0.78",
"@logtape/logtape": "jsr:@logtape/logtape@^2",
"@noble/hashes/sha2.js": "jsr:@noble/hashes@^2/sha2.js",
"@noble/hashes/utils.js": "jsr:@noble/hashes@^2/utils.js",
"@std/testing/bdd": "jsr:@std/testing@^1/bdd",
"@std/expect": "jsr:@std/expect@^1"
},
"compilerOptions": {
"lib": [
"esnext",
"dom",
"dom.iterable",
"deno.ns"
],
"strict": true
},
"tasks": {
"test": "deno test --allow-env --allow-read --allow-write --allow-net --allow-run --allow-sys"
}
}