-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 KB
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
{
"name": "@streamerson/monorepo",
"version": "0.0.1",
"license": "LAMC",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"test": "bun test",
"test:coverage": "bun test packages/core/test --coverage",
"test:coverage:reader": "bun tools/coverage-gate.ts",
"clean": "./tools/cleanup.sh",
"postclean": "bun install && bun run build",
"docgen": "bun ./tools/embed.ts -w --summary",
"lint": "eslint .",
"start:redis": "docker compose up -d",
"stop:redis": "docker compose down",
"restart:redis": "docker compose restart",
"benchmark": "bun ./tools/run-benchmark.ts",
"loadtest": "bun ./tools/run-load-test.ts",
"release": "bun ./tools/release.ts",
"verify-examples": "tsc -p packages/examples/tsconfig.check.json"
},
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.2",
"doctoc": "^2.5.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.8.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.9.6",
"tsdoc-markdown": "^1.5.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.65.0"
},
"workspaces": [
"packages/*"
]
}