-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "@li0ard/ecdsa_icao",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "0.2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/li0ard/ecdsa_icao.git"
},
"bugs": {
"url": "https://github.com/li0ard/ecdsa_icao/issues"
},
"homepage": "https://github.com/li0ard/ecdsa_icao#readme",
"description": "This is a pure JS implementation of ECDSA for eMRTD certificates",
"author": "li0ard",
"devDependencies": {
"@types/bun": "latest",
"@types/node-tlv": "^1.5.4",
"typedoc": "^0.26.7"
},
"scripts": {
"build": "rm -rf dist/ && tsc --project tsconfig.build.json",
"docs": "typedoc --options .config/typedoc/config.cjs"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"@peculiar/asn1-ecc": "^2.3.14",
"node-tlv": "^1.5.14"
}
}