forked from FuelLabs/fuels-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 6.24 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
130
131
132
133
134
135
136
137
138
139
140
{
"name": "fuels-ts",
"version": "0.0.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"private": true,
"engines": {
"node": "^18.20.3 || ^20.0.0 || ^22.0.0",
"pnpm": "^9.4.0"
},
"packageManager": "[email protected]",
"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 --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)",
"bench:node": "vitest bench --run --config vitest.node.config.mts $(scripts/tests-find.sh)",
"bench:node:filter": "vitest bench --run --config vitest.node.config.mts",
"bench:browser": "vitest bench --run --config vitest.browser.config.mts $(scripts/tests-find.sh)",
"bench:browser:filter": "vitest bench --run --config vitest.browser.config.mts",
"clinic:flame": "clinic flame --autocannon [ / ] -- node packages/${npm_config_package_name}/dist/profile.js",
"clinic:bubble": "clinic bubbleprof --autocannon [ -c 5 -a 500 / ] -- node packages/${npm_config_package_name}/dist/profile.js",
"clinic:doctor": "clinic doctor --autocannon [ / ] -- node packages/${npm_config_package_name}/dist/profile.js",
"clinic:heap": "clinic heapprofiler --autocannon [ / ] -- node packages/${npm_config_package_name}/dist/profile.js",
"test:integration": "vitest --run --config vitest.node.config.mts $(scripts/tests-find.sh --integration)",
"lint": "run-s type:check-tests lint:check prettier: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-tests": "tsc -p tsconfig.test.json",
"prettier:check": "prettier --check packages --check apps/docs-snippets",
"prettier:format": "prettier --write packages --check apps/docs-snippets",
"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",
"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",
"@codspeed/vitest-plugin": "^3.1.1",
"@elasticpath/textlint-rule-no-dead-relative-link": "^1.1.1",
"@fuel-ts/utils": "workspace:*",
"@internal/forc": "workspace:*",
"@internal/fuel-core": "workspace:*",
"@internal/tsup": "workspace:*",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@playwright/test": "^1.47.2",
"@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",
"autocannon": "^7.15.0",
"clinic": "^13.0.0",
"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.30.6",
"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",
"textlint": "^14.2.1",
"syncpack": "12.3.3",
"textlint-rule-no-dead-link": "^5.2.0",
"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",
"webdriverio": "^9.0.9"
},
"pnpm": {
"overrides": {
"cross-fetch": "4.0.0"
}
}
}