-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
72 lines (72 loc) · 1.72 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
64
65
66
67
68
69
70
71
72
{
"name": "eciesjs",
"description": "Elliptic Curve Integrated Encryption Scheme for secp256k1/curve25519",
"license": "MIT",
"author": {
"name": "Weiliang Li",
"email": "[email protected]",
"url": "https://github.com/kigawas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecies/js.git"
},
"version": "0.4.12",
"engines": {
"node": ">=16",
"bun": ">=1",
"deno": ">=2"
},
"keywords": [
"secp256k1",
"curve25519",
"crypto",
"elliptic curves",
"ecies",
"bitcoin",
"ethereum",
"cryptocurrency"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./consts": {
"types": "./dist/consts.d.ts",
"default": "./dist/consts.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
},
"scripts": {
"build": "npx tsc",
"test": "vitest",
"test:browser": "node ./scripts/gen-browser-tests.mjs && cd tests-browser && pnpm test"
},
"dependencies": {
"@ecies/ciphers": "^0.2.1",
"@noble/ciphers": "^1.0.0",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"typescript": "^5.6.3",
"undici": "^6.20.1",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}