-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.2 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
{
"name": "gatsby-source-ttlive",
"version": "3.5.0",
"description": "Gatsby source plugin to source nodes from TT-Live data",
"main": "./dist/gatsby-node.js",
"files": [
"./dist/*",
"gatsby-node.js"
],
"scripts": {
"build": "tsup src/gatsby-node.ts --minify --clean",
"lint": "eslint .",
"prepack": "npm run build"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"tt-live",
"bettv",
"table-tennis"
],
"author": "René Bannat <r.bannat@gmail.com>",
"license": "MIT",
"dependencies": {
"fast-xml-parser": "^5.11.1",
"gatsby-core-utils": "^4.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rbannat/gatsby-source-ttlive"
},
"bugs": {
"url": "https://github.com/rbannat/gatsby-source-ttlive/issues"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.5",
"gatsby": "^5.16.1",
"gatsby-plugin-utils": "^4.16.0",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.69.0"
},
"peerDependencies": {
"gatsby": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}