-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "bako-safe",
"private": true,
"version": "0.0.50",
"description": "A signature validation package built based on sway in the fuel network",
"author": "Bako labs",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "turbo run prebuild && turbo run build",
"test": "turbo run test",
"ci:release": "turbo run build && pnpm changeset publish --filter=bakosafe"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node-fetch": "^2.6.11",
"@types/web": "^0.0.169",
"dotenv": "^16.4.1",
"turbo": "^2.1.2"
},
"dependencies": {
"@fuel-wallet/sdk": "^0.13.10",
"@fuel-wallet/types": "^0.13.10",
"@types/jest": "^29.5.4",
"@types/mocha": "^10.0.1",
"@types/node": "^22.5.5"
},
"pnpm": {
"overrides": {
"axios@<0.21.1": ">=0.21.1",
"follow-redirects@<1.14.8": ">=1.14.8",
"axios@<0.21.2": ">=0.21.2",
"follow-redirects@<1.14.7": ">=1.14.7",
"follow-redirects@<1.15.4": ">=1.15.4",
"follow-redirects@<=1.15.5": ">=1.15.6",
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
"axios@>=1.3.2 <=1.7.3": ">=1.7.4",
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=2.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=5.2.1 <=6.5.6": ">=6.5.7"
}
},
"packageManager": "[email protected]"
}