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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132{
"name": "fuels-ts",
"version": "0.0.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"private": true,
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0",
"pnpm": "^9.4.0"
},
"packageManager": "pnpm@9.4.0",
"scripts": {
"dev": "nodemon --config nodemon.config.json -x 'pnpm build:packages'",
"build": "turbo run build --cache-dir=.turbo",
"build:packages": "turbo run build --filter=!docs --filter=!template-*",
"ci:test": "./scripts/tests-ci.sh",
"pretest": "turbo run pretest",
"depcheck": "knip --include-libs --dependencies --tags=-knipignore",
"knip:fix": "knip --fix",
"depsync:lint": "syncpack list-mismatches",
"depsync:fix": "syncpack fix-mismatches",
"test": "vitest --run --coverage --config vitest.node.config.mts --project node $(scripts/tests-find.sh --node)",
"test:node": "vitest --run --coverage --config vitest.node.config.mts --project node $(scripts/tests-find.sh --node)",
"test:browser": "vitest --run --coverage --config vitest.browser.config.mts --project browser $(scripts/tests-find.sh --browser)",
"test:all": "run-p test:node test:browser",
"test:filter": "vitest --run --coverage false --config vitest.node.config.mts --project node",
"test:coverage-merge": "tsx ./scripts/tests-coverage-merge.ts",
"test:coverage-diff": "tsx ./scripts/tests-coverage-diff.ts",
"test:watch": "vitest --watch --config vitest.node.config.mts --project node $(scripts/tests-find.sh --node)",
"test:validate": "./scripts/tests-validate.sh",
"test:browser:filter": "vitest --run --coverage false --config vitest.browser.config.mts --project browser",
"test:e2e": "vitest --run --config vitest.node.config.mts --project node $(scripts/tests-find.sh --e2e)",
"test:integration": "vitest --run --config vitest.node.config.mts --project node $(scripts/tests-find.sh --integration)",
"test:forc": "turbo run test:forc",
"test:network": "vitest --run --config vitest.node.config.mts --project node $(scripts/tests-find.sh --network)",
"lint": "run-s type:check-tests lint:check prettier:check type:check",
"lint:check": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "pnpm lint:check --fix",
"lint:md-links": "tsx ./scripts/lint-md-links",
"lint:package-jsons": "tsx ./scripts/lint-package-jsons",
"type:check": "turbo run type:check",
"type:check-tests": "tsc -p tsconfig.test.json",
"tx:perf": "tsx packages/fuel-gauge/scripts/latency-detection/main.ts",
"prettier:check": "prettier --check packages --check apps/docs",
"prettier:format": "prettier --write packages --write apps/docs",
"verify:package-exports": "tsx ./scripts/verify-package-exports",
"changeset:publish": "tsx ./scripts/changeset/changeset-publish",
"changeset:next": "tsx ./scripts/changeset/changeset-next.mts",
"changeset:version-with-docs": "tsx ./scripts/changeset/changeset-version-with-docs",
"changeset:update-changelog": "tsx ./scripts/changeset/update-changelog.mts",
"changeset:get-latest-release": "tsx ./scripts/changeset/get-latest-release.mts",
"release:deprecate": "tsx ./scripts/release-deprecate.ts",
"forc:update": "tsx ./scripts/forc-update",
"forc:check": "./scripts/forc-check.sh",
"forc:format": "./scripts/forc-format.sh",
"forc:verify": "tsx ./scripts/verify-forc-version",
"node:run": "./scripts/run-node.sh",
"node:clean": "rimraf .fuel-core/db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuels-ts.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-ts/issues"
},
"homepage": "https://github.com/FuelLabs/fuels-ts#readme",
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@changesets/cli": "2.28.1",
"@changesets/get-github-info": "0.6.0",
"@changesets/read": "0.6.3",
"@changesets/types": "6.1.0",
"@fuel-ts/utils": "workspace:*",
"@internal/forc": "workspace:*",
"@internal/fuel-core": "workspace:*",
"@internal/tsup": "workspace:*",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@playwright/test": "1.50.1",
"@types/node": "22.13.5",
"@types/node-fetch": "2.6.12",
"@types/web": "0.0.206",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.21.0",
"@vitest/browser": "3.0.9",
"@vitest/coverage-istanbul": "3.0.9",
"compare-versions": "6.1.1",
"coverage-diff": "3.2.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-tsdoc": "0.3.0",
"glob": "10.4.5",
"knip": "5.43.6",
"markdown-link-check": "3.12.2",
"memfs": "4.17.0",
"nodemon": "3.1.9",
"npm-run-all": "4.1.5",
"nyc": "17.1.0",
"open": "10.1.0",
"prettier": "3.5.2",
"rimraf": "5.0.10",
"syncpack": "12.3.3",
"ts-generator": "0.1.1",
"tsup": "8.3.5",
"tsx": "4.19.3",
"turbo": "2.4.2",
"typescript": "5.7.3",
"vite": "6.1.6",
"vite-plugin-json5": "1.1.6",
"vite-plugin-node-polyfills": "0.23.0",
"vite-plugin-plain-text": "1.4.2",
"vitest": "3.0.9"
},
"pnpm": {
"overrides": {
"whatwg-url": "14.1.0",
"cross-fetch": "4.0.0"
}
}
}