forked from QuipNetwork/hashsigs-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1002 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1002 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
33
34
35
36
37
38
{
"name": "@quip.network/hashsigs",
"version": "0.1.0",
"description": "Hash-based signatures, WOTS+",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"clean": "rm -rf dist coverage node_modules",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": ["pqcrypto", "signatures", "post-quantum", "hash"],
"author": "Richard T. Carback III",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/quipnetwork/hashsigs-ts"
},
"homepage": "https://github.com/quipnetwork/hashsigs-ts#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@noble/hashes": "^1.7.1",
"@types/node": "^22.13.14",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"devDependencies": {
"@vitest/coverage-v8": "3.0.9"
}
}