-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 807 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 807 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
{
"name": "@chitty/chittyproof",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "src/worker.js",
"exports": {
".": {
"import": "./src/lib/chittyproof-v2-canonical.js"
},
"./verify-ecdsa": {
"import": "./src/lib/chittyproof-verify-ecdsa.js"
},
"./schema": {
"import": "./etc/authority/schema/chittyproof-v2-fact-bundle.schema.json",
"default": "./etc/authority/schema/chittyproof-v2-fact-bundle.schema.json"
}
},
"scripts": {
"test": "vitest run",
"dev": "wrangler dev",
"deploy": "wrangler deploy"
},
"devDependencies": {
"vitest": "^4.0.16",
"wrangler": "^4.69.0"
},
"dependencies": {
"hono": "^4.12.3"
},
"description": "Evidence-grade document transformation and proof minting service"
}