-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rapidoddsapi",
"version": "0.1.0",
"description": "Official Node.js SDK for RapidOddsAPI: bookmaker odds, live scores and player stats over REST and WebSocket.",
"license": "MIT",
"author": "RapidOddsAPI <support@rapidoddsapi.com>",
"homepage": "https://rapidoddsapi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/rapidoddsapi/rapidoddsapi-node.git"
},
"bugs": {
"url": "https://github.com/rapidoddsapi/rapidoddsapi-node/issues"
},
"keywords": [
"odds",
"odds-api",
"betting",
"sports-betting",
"bookmaker",
"arbitrage",
"sports-data",
"live-scores",
"websocket"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.12",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"vitest": "^4.1.10"
},
"overrides": {
"esbuild": "^0.28.1"
}
}