-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
61 lines (61 loc) · 2.06 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-connectors",
"version": "0.0.1",
"private": true,
"description": "Fuel Wallet Connectors",
"author": "Fuel Labs <[email protected]> (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",
"test:e2e": "turbo run test:e2e",
"lint:check": "biome check --apply-unsafe .",
"lint:ci": "biome lint --max-diagnostics=1000 --diagnostic-level=error .",
"format": "biome format --write .",
"changeset": "changeset",
"changeset:next": "tsx ./scripts/changeset-next",
"packages:version": "node ./scripts/version.js",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.26.2",
"@fuels/ts-config": "0.20.0",
"@fuels/tsup-config": "0.20.0",
"@types/node": "20.12.11",
"@vitest/coverage-v8": "2.0.2",
"compare-versions": "6.1.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"tsx": "^4.16.2",
"turbo": "2.0.11",
"vitest": "2.0.2"
},
"engines": {
"node": ">=20.11.0",
"pnpm": "9.x"
},
"pnpm": {
"overrides": {
"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"
}
},
"packageManager": "[email protected]"
}