-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 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
{
"name": "odds-api-io",
"version": "1.1.0",
"description": "Official Node.js SDK for Odds-API.io - Real-time sports betting odds from 250+ bookmakers",
"keywords": [
"odds",
"betting",
"sports",
"api",
"arbitrage",
"value-bets",
"bookmakers",
"odds-api"
],
"author": "Odds-API.io",
"license": "MIT",
"homepage": "https://odds-api.io",
"repository": {
"type": "git",
"url": "git+https://github.com/odds-api-io/odds-api-node.git"
},
"bugs": {
"url": "https://github.com/odds-api-io/odds-api-node/issues"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}