-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.68 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
{
"name": "@ecies/ciphers",
"description": "Node/Pure JavaScript symmetric ciphers adapter",
"license": "MIT",
"author": {
"name": "Weiliang Li",
"email": "[email protected]",
"url": "https://github.com/kigawas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecies/js-ciphers.git"
},
"version": "0.2.2",
"engines": {
"node": ">=16",
"bun": ">=1",
"deno": ">=2"
},
"keywords": [
"cryptography",
"cipher",
"aes",
"chacha",
"chacha20",
"chacha20poly1305",
"xchacha20",
"xchacha20poly1305"
],
"files": [
"dist"
],
"main": "dist/index.js",
"exports": {
".": null,
"./aes": {
"types": "./dist/aes/node.d.ts",
"browser": "./dist/aes/noble.js",
"react-native": "./dist/aes/noble.js",
"deno": "./dist/aes/noble.js",
"bun": "./dist/aes/node.js",
"default": "./dist/aes/node.js"
},
"./chacha": {
"types": "./dist/chacha/node.d.ts",
"browser": "./dist/chacha/noble.js",
"react-native": "./dist/chacha/noble.js",
"deno": "./dist/chacha/noble.js",
"bun": "./dist/chacha/noble.js",
"default": "./dist/chacha/node.js"
}
},
"scripts": {
"build": "npx tsc",
"test": "vitest",
"test:browser": "cd tests-browser && pnpm test"
},
"peerDependencies": {
"@noble/ciphers": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.6",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}