-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpackage.json
129 lines (129 loc) · 5.28 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "fuels-ts",
"version": "0.0.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"private": true,
"engines": {
"node": "^18.20.3 || ^20.0.0 || ^22.0.0",
"pnpm": "^9.4.0"
},
"packageManager": "pnpm@9.4.0",
"scripts": {
"dev": "nodemon --config nodemon.config.json -x 'pnpm build:packages'",
"build": "turbo run build --cache-dir=.turbo",
"build:packages": "turbo run build --filter=!docs --filter=!template-*",
"ci:test": "./scripts/tests-ci.sh",
"pretest": "turbo run pretest",
"depcheck": "knip --include-libs --dependencies --tags=-knipignore",
"knip:fix": "knip --fix",
"depsync:lint": "syncpack list-mismatches",
"depsync:fix": "syncpack fix-mismatches",
"test": "vitest --run --coverage --config vitest.node.config.mts $(scripts/tests-find.sh --node)",
"test:node": "vitest --run --coverage --config vitest.node.config.mts $(scripts/tests-find.sh --node)",
"test:browser": "vitest --run --coverage --config vitest.browser.config.mts $(scripts/tests-find.sh --browser)",
"test:all": "run-p test:node test:browser",
"test:filter": "vitest --run --coverage false --config vitest.node.config.mts",
"test:coverage-merge": "tsx ./scripts/tests-coverage-merge.ts",
"test:coverage-diff": "tsx ./scripts/tests-coverage-diff.ts",
"test:watch": "vitest --watch --config vitest.node.config.mts $(scripts/tests-find.sh --node)",
"test:validate": "./scripts/tests-validate.sh",
"test:browser:filter": "vitest --run --coverage false --config vitest.browser.config.mts",
"test:e2e": "vitest --run --config vitest.node.config.mts $(scripts/tests-find.sh --e2e)",
"test:integration": "vitest --run --config vitest.node.config.mts $(scripts/tests-find.sh --integration)",
"lint": "run-s type:check-tests lint:check prettier:check type:check",
"lint:check": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "pnpm lint:check --fix",
"lint:md-links": "tsx ./scripts/lint-md-links",
"lint:package-jsons": "tsx ./scripts/lint-package-jsons",
"type:check": "turbo run type:check",
"type:check-tests": "tsc -p tsconfig.test.json",
"prettier:check": "prettier --check packages --check apps/docs",
"prettier:format": "prettier --write packages --write apps/docs",
"verify:package-exports": "tsx ./scripts/verify-package-exports",
"changeset:publish": "tsx ./scripts/changeset/changeset-publish",
"changeset:next": "tsx ./scripts/changeset/changeset-next",
"changeset:version-with-docs": "tsx ./scripts/changeset/changeset-version-with-docs",
"changeset:update-changelog": "tsx ./scripts/changeset/update-changelog.mts",
"changeset:get-latest-release": "tsx ./scripts/changeset/get-latest-release.mts",
"changeset:dependabot": "./scripts/changeset/dependabot-changeset.sh",
"release:deprecate": "tsx ./scripts/release-deprecate.ts",
"forc:update": "tsx ./scripts/forc-update",
"forc:check": "./scripts/forc-check.sh",
"forc:format": "./scripts/forc-format.sh",
"forc:verify": "tsx ./scripts/verify-forc-version",
"node:run": "./scripts/run-node.sh",
"node:clean": "rimraf .fuel-core/db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FuelLabs/fuels-ts.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FuelLabs/fuels-ts/issues"
},
"homepage": "https://github.com/FuelLabs/fuels-ts#readme",
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@changesets/cli": "2.27.9",
"@changesets/get-github-info": "0.6.0",
"@changesets/read": "0.6.1",
"@changesets/types": "6.0.0",
"@fuel-ts/utils": "workspace:*",
"@internal/forc": "workspace:*",
"@internal/fuel-core": "workspace:*",
"@internal/tsup": "workspace:*",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@playwright/test": "1.49.1",
"@types/node": "22.5.5",
"@types/node-fetch": "2.6.11",
"@types/web": "0.0.174",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.21.0",
"@vitest/browser": "2.0.5",
"@vitest/coverage-istanbul": "2.0.5",
"compare-versions": "6.1.1",
"coverage-diff": "3.2.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-tsdoc": "0.3.0",
"glob": "10.4.5",
"knip": "5.41.1",
"markdown-link-check": "3.12.2",
"memfs": "4.14.0",
"nodemon": "3.1.7",
"npm-run-all": "4.1.5",
"nyc": "17.1.0",
"open": "10.1.0",
"prettier": "3.3.3",
"rimraf": "5.0.10",
"syncpack": "12.3.3",
"ts-generator": "0.1.1",
"tsup": "6.7.0",
"tsx": "4.19.1",
"turbo": "2.1.2",
"typescript": "5.6.3",
"vite": "5.4.9",
"vite-plugin-json5": "1.1.2",
"vite-plugin-node-polyfills": "0.22.0",
"vite-plugin-plain-text": "1.4.2",
"vitest": "2.0.5"
},
"pnpm": {
"overrides": {
"whatwg-url": "14.1.0",
"cross-fetch": "4.0.0"
}
}
}