forked from FuelLabs/fuel-connectors
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.85 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.85 KB
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
{
"name": "fuel-connectors",
"version": "0.0.1",
"private": true,
"description": "Fuel Wallet Connectors",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"homepage": "https://github.com/FuelLabs/fuel-connectors",
"scripts": {
"build": "turbo build",
"build:connectors": "turbo run build --filter @fuels/connectors",
"build:docs": "turbo run build --filter=docs",
"fuels:build": "turbo run fuels:build && pnpm format",
"dev:examples:react": "turbo run dev --filter=react-app",
"dev:examples:next": "turbo run dev --filter=react-next",
"dev:docs": "turbo run dev --filter=docs",
"build:watch": "turbo build:watch",
"ts:check": "turbo run ts:check",
"test": "vitest",
"node:up": "make -C ./docker up",
"node:down": "make -C ./docker down",
"node:clean": "make -C ./docker clean",
"test:ci": "turbo run test -- --run --coverage.enabled --coverage.reporter=json-summary --coverage.reporter=json --hook-timeout=30000",
"test:e2e": "turbo run test:e2e",
"test:e2e:local": "turbo run test:e2e:local --filter @e2e-tests/runner",
"lint:check": "biome check --apply-unsafe .",
"lint:ci": "biome lint --max-diagnostics=1000 --diagnostic-level=error .",
"format": "biome format --write .",
"changeset": "changeset",
"changeset:empty": "changeset --empty",
"changeset:release": "changeset publish --no-git-tag",
"changeset:version": "changeset version",
"changeset:version-with-docs": "tsx ./scripts/changeset/changeset-version-with-docs.ts",
"changeset:publish": "tsx ./scripts/changeset/changeset-publish.ts",
"changeset:next": "tsx ./scripts/changeset/changeset-next.mts",
"changeset:check": "changeset status --since=master",
"changeset:update-changelog": "tsx ./scripts/changeset/update-changelog.mts",
"changeset:get-latest-release": "tsx ./scripts/changeset/get-latest-release.mts",
"packages:version": "node ./scripts/version.js",
"prepare": "husky"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@biomejs/biome": "1.7.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.26.2",
"@changesets/get-github-info": "0.6.0",
"@changesets/read": "0.6.3",
"@changesets/types": "6.1.0",
"@fuels/ts-config": "0.26.0",
"@fuels/tsup-config": "0.26.0",
"@types/node": "20.12.11",
"@vitest/coverage-v8": "2.1.9",
"compare-versions": "6.1.0",
"fuels": "0.102.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"tsx": "^4.16.2",
"turbo": "2.0.11",
"vitest": "2.1.9"
},
"engines": {
"node": "20.x",
"pnpm": "9.x"
},
"packageManager": "pnpm@9.5.0",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@wagmi/connectors": "5.1.7"
}
},
"overrides": {
"js-yaml@<3.14.2": "3.14.2",
"uglify-js@<2.6.0": ">=2.6.0",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"ws@>=7.0.0 <7.5.10": ">=7.5.10",
"ws@>=6.0.0 <6.2.3": ">=6.2.3",
"fast-xml-parser@<4.4.1": ">=4.4.1",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"secp256k1@=5.0.0": ">=5.0.1",
"elliptic@<6.6.0": ">=6.6.0",
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"nanoid@<3.3.8": "3.3.8",
"esbuild@<=0.24.2": ">=0.25.0",
"@babel/runtime@<7.26.10": ">=7.26.10",
"@babel/helpers@<7.26.10": ">=7.26.10",
"image-size@<1.2.1": ">=1.2.1",
"vite@>=5.0.0 <=5.4.20": "5.4.21",
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
"next@>=13.0.0 <14.2.35": "14.2.35",
"axios@>=1.0.0 <1.12.0": ">=1.12.0",
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
"playwright@<1.55.1": ">=1.55.1",
"@metamask/sdk@>=0.16.0 <=0.33.0": ">=0.33.1",
"@metamask/sdk-communication-layer@>=0.16.0 <=0.33.0": ">=0.33.1",
"wagmi": "2.12.7",
"@wagmi/connectors": "5.1.7"
}
}
}