-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "@signforge/verify",
"version": "1.0.0",
"description": "Verify SignForge-signed PDFs and proof documents offline — W3C VC, ECDSA P-256, Merkle proofs, JAdES JWS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"signforge-verify": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "node test/verify.test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"signforge",
"verify",
"e-signature",
"verifiable-credentials",
"w3c-vc",
"ecdsa",
"merkle",
"pdf",
"digital-signature",
"transparency-log",
"proof",
"offline-verification",
"docusign-alternative"
],
"author": "SignForge <hello@signforge.io>",
"license": "MIT",
"homepage": "https://signforge.io/verify",
"repository": {
"type": "git",
"url": "https://github.com/kumarprobeops/signforge-verify-js.git"
},
"bugs": {
"url": "https://github.com/kumarprobeops/signforge-verify-js/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^5.0.0"
}
}