-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.49 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
{
"name": "fuel-streams-js",
"version": "0.0.1",
"private": true,
"description": "Official data streaming Typescript library for Fuel Network",
"author": "Fuel Labs <contact@fuel.sh> (https://fuel.network/)",
"homepage": "https://github.com/FuelLabs/fuel-streams-js",
"workspaces": ["packages/*"],
"scripts": {
"dev:app": "bun run --filter 'simple-app' dev",
"build": "turbo run build",
"build:libs": "turbo build --filter @fuels/streams",
"build:watch": "turbo build:watch",
"changeset": "changeset",
"format": "biome format --write .",
"lint:check": "biome check --unsafe --write .",
"lint:ci": "biome lint --max-diagnostics=1000 --diagnostic-level=error .",
"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": "bun run --filter '*' ts:check",
"generate:subjects": "bun ./scripts/generate-subjects.ts -o ./packages/fuel-streams/src/modules && bun run format",
"changeset:next": "bun ./scripts/changeset-next.ts",
"packages:version": "bun ./scripts/version.ts",
"filters:list": "bun ./scripts/filters-list.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@fuels/ts-config": "0.26.0",
"@fuels/tsup-config": "0.26.0",
"@playwright/experimental-ct-react": "1.50.1",
"@playwright/test": "1.50.1",
"@types/libnpmpublish": "9.0.1",
"@types/mocha": "10.0.10",
"@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": "3.0.5",
"autoprefixer": "10.4.20",
"chalk": "^5.4.1",
"commander": "13.1.0",
"compare-versions": "6.1.1",
"husky": "9.1.7",
"tailwindcss": "3.4.15",
"libnpmpublish": "^11.0.0",
"lint-staged": "15.4.3",
"postcss": "8.5.1",
"prettier": "3.4.2",
"terser": "5.38.1",
"tsup": "8.3.6",
"tsx": "^4.19.2",
"turbo": "^2.4.0",
"typescript": "~5.7.3",
"updates": "^16.4.2",
"vite": "^6.1.0",
"vitest": "3.0.5",
"voca": "1.4.1",
"zx": "8.3.2",
"@types/bun": "latest"
},
"packageManager": "bun@1.2.2",
"engines": {
"bun": ">=1.2.2"
},
"module": "index.ts",
"type": "module"
}