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{
"name": "@fuel-ts/recipes",
"version": "0.102.0",
"description": "Recipes for Sway Programs",
"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"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "run-s build:recipes build:package build:format",
"build:recipes": "tsx ./scripts/build-recipes.ts",
"build:package": "tsup",
"build:format": "prettier --config ../../.prettierrc --log-level error --write .",
"postbuild": "tsx ../../scripts/postbuild.ts"
},
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/address": "workspace:*",
"@fuel-ts/abi-coder": "workspace:*",
"@fuel-ts/abi-typegen": "workspace:*",
"@fuel-ts/account": "workspace:*",
"@fuel-ts/program": "workspace:*",
"@fuel-ts/transactions": "workspace:*",
"@fuel-ts/utils": "workspace:*",
"@fuel-ts/contract": "workspace:*"
}
}