forked from racehub-io/f1-telemetry-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.37 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@racehub-io/f1-telemetry-client",
"version": "0.2.12",
"main": "build/main/index.js",
"types": "build/main/index.d.ts",
"files": [
"build"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/racehub-io/f1-telemetry-client.git"
},
"dependencies": {
"@racehub-io/f1-telemetry-client": "^0.2.12",
"binary-parser": "^2.2.1",
"struct": "^0.0.12"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/binary-parser": "^1.5.1",
"@types/jest": "^29.5.2",
"@types/n-readlines": "^1.0.3",
"@types/node": "^20.2.5",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.27.5",
"gts": "^3.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"n-readlines": "^1.0.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "~4.4.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"start": "npm run build && node build/main/playground/index.js",
"record": "npm run build && node build/main/playground/record.js",
"build": "npm run clean && tsc && babel ./src --out-dir build/es5 --extensions .ts",
"build:link": "npm run build && npm link",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit",
"check": "gts check",
"clean": "rimraf ./build",
"compile": "tsc -p .",
"fix": "gts fix",
"test": "jest",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"lint": "gts lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css}": [
"gts fix",
"git add"
]
},
"keywords": [
"automotive",
"grand prix",
"f12018",
"f1 2018",
"f12019",
"f1 2019",
"f12020",
"f1 2020",
"f12021",
"f1 2021",
"f12022",
"f122",
"f1 2022",
"f123",
"f1 2023",
"formula 1",
"f1",
"codemasters",
"udp",
"telemetry",
"racing",
"simracing",
"gaming",
"formula",
"ps4",
"ps5",
"xbox",
"xbox one",
"playstation",
"playstation 4",
"playstation 5",
"esports",
"e sports",
"e-sports",
"videogame"
],
"engines": {
"node": ">=10.6.0"
}
}