-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.64 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
{
"name": "fuel-streams-js",
"version": "0.0.1",
"private": true,
"description": "Official data streaming Typescript library for Fuel Network",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"homepage": "https://github.com/FuelLabs/fuel-streams-js",
"scripts": {
"build": "turbo build",
"build:libs": "turbo build --filter @fuels/streams",
"build:watch": "turbo build:watch",
"changeset": "changeset",
"changeset:next": "tsx ./scripts/changeset-next",
"format": "biome format --write .",
"generate:subjects": "tsx ./scripts/generate-subjects.ts -o ./packages/fuel-streams/src/modules",
"lint:check": "biome check --unsafe --write .",
"lint:ci": "biome lint --max-diagnostics=1000 --diagnostic-level=error .",
"packages:version": "node ./scripts/version.js",
"prepare": "husky",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"test:coverage": "turbo test:coverage",
"test:ci": "turbo run test:coverage -- --coverage.enabled --coverage.reporter=json-summary --coverage.reporter=json",
"ts:check": "turbo run ts:check",
"deps:update": "updates -gu && pnpm -r exec updates -gu",
"filters:list": "tsx ./scripts/filters-list.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@fuels/ts-config": "0.26.0",
"@fuels/tsup-config": "0.26.0",
"@playwright/experimental-ct-react": "1.49.0",
"@playwright/test": "1.49.0",
"@types/libnpmpublish": "9.0.1",
"@types/mocha": "10.0.10",
"@types/node": "^22.10.0",
"@types/npm": "^7.19.3",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.1",
"@types/react-syntax-highlighter": "15.5.13",
"@types/voca": "1.4.6",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.6",
"autoprefixer": "10.4.20",
"chalk": "^5.3.0",
"commander": "12.1.0",
"compare-versions": "6.1.1",
"husky": "9.1.7",
"libnpmpublish": "^10.0.1",
"lint-staged": "15.2.10",
"postcss": "8.4.49",
"prettier": "3.4.1",
"tailwindcss": "3.4.15",
"terser": "5.36.0",
"tsup": "8.3.5",
"tsx": "^4.19.2",
"turbo": "2.3.3",
"typescript": "~5.7.2",
"updates": "^16.4.0",
"vite": "^6.0.1",
"vitest": "~2.1.6",
"voca": "1.4.1",
"zx": "8.2.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"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]"
}