-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "@chitty/documint",
"version": "1.0.0",
"type": "module",
"description": "Mint it. It's permanent. Document signing with ChittyProof.",
"main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.cjs"
},
"./sdk": {
"import": "./src/sdk/client.js"
},
"./verify": {
"import": "./src/verify/public.js"
}
},
"scripts": {
"dev": "wrangler dev",
"build": "esbuild src/index.js --bundle --outfile=dist/documint.js --format=esm",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"lint": "eslint src/",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production"
},
"keywords": [
"documint",
"chitty",
"chittyproof",
"esign",
"digital-signature",
"certified-delivery",
"court-admissible",
"document-verification"
],
"author": "ChittyApps",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chittyapps/documint"
},
"homepage": "https://documint.chitty.cc",
"dependencies": {},
"devDependencies": {
"esbuild": "^0.20.0",
"eslint": "^8.57.0",
"vitest": "^1.2.0",
"wrangler": "^3.24.0"
},
"engines": {
"node": ">=18.0.0"
}
}