-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "secp256k1-pem",
"version": "0.0.2",
"description": "Secp256k1 to PEM format",
"license": "MIT",
"author": "ACC01ADE",
"repository": {
"type": "git",
"url": "https://github.com/ACC01ADE/secp256k1-pem.git"
},
"homepage": "https://github.com/ACC01ADE/secp256k1-pem",
"keywords": [],
"bugs": {
"url": "https://github.com/ACC01ADE/secp256k1-pem/issues"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src",
"types.ts",
"tsconfig.json"
],
"scripts": {
"build": "tsc --build",
"prettier:check": "prettier --loglevel error --ignore-path .gitignore --list-different .",
"prettier:fix": "prettier --loglevel error --ignore-path .gitignore --write ."
},
"dependencies": {
"@noble/hashes": "^1.1.3",
"@noble/secp256k1": "^1.7.0",
"@scure/bip32": "^1.1.1",
"@scure/bip39": "^1.1.0"
},
"devDependencies": {
"@types/data-urls": "^2.0.1",
"@types/node": "^17.0.21",
"dotenv": "^10.0.0",
"path": "^0.12.7",
"prettier": "^2.6.2",
"ts-node": "^10.1.0",
"typechain": "^7.0.0",
"typescript": "^4.3.5"
}
}