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{
"name": "@fuel-ts/crypto",
"version": "0.102.0",
"description": "Utilities for encrypting and decrypting data",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"browser": {
"./dist/index.mjs": "./dist/index.browser.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"postbuild": "tsx ../../scripts/postbuild.ts"
},
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/errors": "workspace:*",
"@fuel-ts/utils": "workspace:*",
"@noble/hashes": "1.7.1"
}
}