-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 KB
/
package.json
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
{
"name": "@blocq-inc/lamport-key-manager-lib",
"version": "0.1.2",
"description": "Lamport Key Manegement Library",
"author": "Naoto Sato <[email protected]>",
"bugs": {
"url": "https://github.com/blocq-inc/lamport-key-manager/issues",
"email": "[email protected]"
},
"dependencies": {
"ethers": "^6.13.4",
"jest": "^29.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.9",
"eslint": "^9.13.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"files": [
"dist"
],
"homepage": "https://github.com/blocq-inc/lamport-key-manager",
"keywords": [
"ethereum",
"keccak256",
"hash",
"quantum resistant",
"quantum-resistant",
"lamport",
"lamport signature",
"post quantum",
"post-quantum"
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "https://github.com/blocq-inc/lamport-key-manager",
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"relink": "yarn unlink && yarn build && yarn link",
"test": "jest -i",
"type-check": "tsc --noEmit"
},
"types": "dist/esm/index.d.ts",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
}
}