-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ps5-mqtt",
"version": "1.7.0",
"author": {
"name": "FunkeyFlo",
"url": "https://github.com/FunkeyFlo"
},
"contributors": [
{
"name": "Andrew Smith",
"url": "https://andrew.codes"
}
],
"workspaces": [
"ps5-mqtt/dev-services",
"ps5-mqtt/server",
"ps5-mqtt/client"
],
"private": true,
"engines": {
"node": "24.16.0"
},
"scripts": {
"build": "yarn workspaces foreach -A run build",
"bump-version": "tsx scripts/bump-version.ts",
"clean": "yarn workspaces foreach -A run clean",
"format": "prettier --write .",
"format/check": "prettier --check .",
"lint": "eslint .",
"resolve-release-version": "tsx scripts/resolve-release-version.ts",
"start": "bash scripts/start.sh",
"test/e2e": "bash scripts/test-e2e.sh",
"test/unit": "yarn workspaces foreach -A run test/unit",
"typecheck": "tsc -p tsconfig.json && yarn workspaces foreach -A run typecheck",
"update-changelog": "tsx scripts/update-changelog.ts"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.3",
"@types/semver": "^7.7.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.7.0",
"prettier": "^3.9.5",
"rimraf": "^6.1.3",
"semver": "^7.8.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0"
},
"resolutions": {
"undici": "^6.27.0",
"js-yaml": "^3.15.0"
},
"packageManager": "yarn@4.16.0"
}