forked from Sharkord/sharkord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 687 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 687 Bytes
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
{
"name": "sharkord",
"version": "0.0.20",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"mediasoup"
],
"scripts": {
"test": "bun run --filter '*' test",
"format": "bun run --filter '*' format",
"format:check": "bun run --filter '*' format:check",
"check-types": "bun run --filter '*' check-types",
"lint": "bun run --filter '*' lint",
"knip": "knip",
"knip:production": "knip --production",
"magic": "bun run format && bun run check-types && bun run lint"
},
"devDependencies": {
"@types/bun": "1.3.14",
"knip": "^5.80.0"
},
"overrides": {
"@types/bun": "1.3.14"
}
}