-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "@fuel-ts/contract",
"version": "0.97.2",
"description": "",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": "^18.20.3 || ^20.0.0 || ^22.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./test-utils": {
"types": "./dist/test-utils.d.ts",
"require": "./dist/test-utils.js",
"import": "./dist/test-utils.mjs"
}
},
"typesVersions": {
"*": {
"test-utils": [
"./dist/test-utils.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"pretest": "pnpm build:forc",
"build:forc": "pnpm fuels-forc build -p ./test/fixtures/forc-projects --release",
"build": "tsup",
"postbuild": "tsx ../../scripts/postbuild.ts"
},
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/abi-coder": "workspace:*",
"@fuel-ts/account": "workspace:*",
"@fuel-ts/crypto": "workspace:*",
"@fuel-ts/errors": "workspace:*",
"@fuel-ts/hasher": "workspace:*",
"@fuel-ts/interfaces": "workspace:*",
"@fuel-ts/math": "workspace:*",
"@fuel-ts/merkle": "workspace:*",
"@fuel-ts/program": "workspace:*",
"@fuel-ts/transactions": "workspace:*",
"@fuel-ts/utils": "workspace:*",
"@fuels/vm-asm": "0.58.2",
"ramda": "0.30.1"
},
"devDependencies": {
"@fuel-ts/utils": "workspace:*",
"@internal/forc": "workspace:*",
"@types/ramda": "0.30.2"
}
}