-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.85 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
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
73
74
75
76
{
"name": "@ecies/ciphers",
"description": "Node/Pure JavaScript symmetric ciphers adapter",
"license": "MIT",
"author": {
"name": "Weiliang Li",
"email": "to.be.impressive@gmail.com",
"url": "https://github.com/kigawas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecies/js-ciphers.git"
},
"version": "0.2.6",
"engines": {
"node": ">=16",
"bun": ">=1",
"deno": ">=2.7.10"
},
"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/node.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/node.js",
"bun": "./dist/chacha/noble.js",
"default": "./dist/chacha/node.js"
}
},
"scripts": {
"check": "biome check",
"check:fix": "biome check --fix",
"build": "npx tsc",
"test": "vitest",
"test:browser": "cd tests-browser && pnpm test"
},
"peerDependencies": {
"@noble/ciphers": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}