-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpackage.json
109 lines (109 loc) · 2.8 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
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
{
"name": "fuels",
"version": "0.97.2",
"description": "Fuel TS SDK",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"bin": {
"fuels": "fuels.js"
},
"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"
},
"./cli": {
"types": "./dist/cli.d.ts",
"require": "./dist/cli.js",
"import": "./dist/cli.mjs"
},
"./test-utils": {
"types": "./dist/test-utils.d.ts",
"require": "./dist/test-utils.js",
"import": "./dist/test-utils.mjs"
},
"./cli-utils": {
"types": "./dist/cli-utils.d.ts",
"require": "./dist/cli-utils.js",
"import": "./dist/cli-utils.mjs"
}
},
"typesVersions": {
"*": {
"cli": [
"./dist/cli.d.ts"
],
"test-utils": [
"./dist/test-utils.d.ts"
],
"./cli-utils": [
"/dist/cli-utils.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "run-s build:package build:browser build:minified",
"build:package": "tsup",
"build:browser": "pnpm vite build",
"build:minified": "pnpm uglifyjs --compress --mangle --output dist/browser.min.mjs -- dist/browser.mjs",
"postbuild": "run-s type:declarations",
"type:declarations": "tsc --emitDeclarationOnly -p tsconfig.dts.json",
"type:check": "tsc --noEmit",
"prepublishOnly": "cp ../../README.md ./README.md"
},
"license": "Apache-2.0",
"dependencies": {
"@fuel-ts/abi-coder": "workspace:*",
"@fuel-ts/abi-typegen": "workspace:*",
"@fuel-ts/account": "workspace:*",
"@fuel-ts/address": "workspace:*",
"@fuel-ts/contract": "workspace:*",
"@fuel-ts/crypto": "workspace:*",
"@fuel-ts/errors": "workspace:*",
"@fuel-ts/hasher": "workspace:*",
"@fuel-ts/interfaces": "workspace:*",
"@fuel-ts/math": "workspace:*",
"@fuel-ts/program": "workspace:*",
"@fuel-ts/script": "workspace:*",
"@fuel-ts/transactions": "workspace:*",
"@fuel-ts/utils": "workspace:*",
"@fuel-ts/versions": "workspace:*",
"@fuel-ts/recipes": "workspace:*",
"bundle-require": "5.0.0",
"chalk": "4",
"chokidar": "3.6.0",
"commander": "12.1.0",
"esbuild": "0.24.0",
"glob": "10.4.5",
"handlebars": "4.7.8",
"joycon": "3.1.1",
"lodash.camelcase": "4.3.0",
"portfinder": "1.0.32",
"toml": "3.0.0",
"uglify-js": "3.19.3",
"yup": "1.4.0"
},
"devDependencies": {
"@types/lodash.camelcase": "4.3.9",
"@types/rimraf": "3.0.2",
"vite": "5.4.9"
},
"keywords": [
"ethereum",
"forc",
"fuel",
"fuels",
"fuel-vm",
"sway",
"typescript"
]
}