This repository was archived by the owner on Sep 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·86 lines (86 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "aqua",
"version": "1.0.10",
"description": "JS Client for external verifier. Goal: A shared library supports a commandline execution and a chrome-extension which is implementation independent. So the verify.js will support not only the mediawiki integration but potentially other third party integrations of the verification procedure.",
"main": "dist/aqua.js",
"types": "index.d.ts",
"type": "commonjs",
"dependencies": {
"aqua-js-sdk": "^3.2.1-45",
"ethers": "^6.13.5",
"http-status-codes": "^2.2.0",
"minimist": "^1.2.8",
"pako": "^2.1.0",
"pdf-lib": "^1.17.1",
"tsup": "^8.4.0"
},
"bin": {
"aqua": "./dist/aqua.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"local": "npm link aqua-js-sdk && tsup",
"prepare": "npm run build",
"test": "vitest run",
"build:bin": "npm run build && pkg .",
"build:bin:all": "npm run build && pkg . --targets node18-linux-x64,node18-macos-x64,node18-win-x64"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "binaries",
"assets": [
"dist/**/*"
],
"scripts": [
"dist/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/inblockio/data-accounting-external-verifier.git"
},
"author": "",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/inblockio/data-accounting-external-verifier/issues"
},
"homepage": "https://github.com/inblockio/data-accounting-external-verifier#readme",
"overrides": {
"ws": "^8.17.1"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/pako": "^2.0.4",
"@yao-pkg/pkg": "^6.19.0",
"prettier": "^3.3.3",
"typescript": "5.8.3",
"vitest": "^4.1.6"
},
"optionalDependencies": {
"asn1js": "^3.0.5",
"nostr-tools": "^2.7.2",
"open": "^10.1.0",
"openid-client": "^5.7.0",
"pkijs": "^3.2.4",
"sigstore": "^3.0.0"
},
"files": [
"aqua.ts",
"notarize.ts",
"verify.ts",
"formatter.ts",
"form_updater.ts",
"index.ts",
"utils.ts",
"pdf_utils.ts",
"verify_pdf.ts",
"LICENSE",
"package.json",
"README.md"
]
}