-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "gatsby-source-bgg",
"version": "3.0.3",
"description": "Gatsby source plugin for pulling game collections from BoardGameGeek",
"keywords": [
"gatsby",
"gatsby-plugin",
"BoardGameGeek"
],
"homepage": "https://github.com/TommasoAmici/gatsby-source-bgg#readme",
"bugs": {
"url": "https://github.com/TommasoAmici/gatsby-source-bgg/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/TommasoAmici/gatsby-source-bgg.git"
},
"license": "MIT",
"author": "Tommaso Amici",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"workspaces": [
"example"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "tsc --watch",
"format": "prettier --write .",
"prepare": "husky install",
"test": "vitest",
"test:ci": "vitest run --coverage",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,yml,json}": "prettier --write"
},
"dependencies": {
"fast-xml-parser": "^3.19.0",
"gatsby-source-filesystem": "^5.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.1.0",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "18.19.31",
"@types/node-fetch": "2.6.11",
"@vitest/coverage-c8": "0.31.4",
"conventional-changelog-conventionalcommits": "5.0.0",
"gatsby": "5.13.4",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"typescript": "5.4.5",
"vitest": "0.31.4"
},
"peerDependencies": {
"gatsby": "3.x || 4.x || 5.x",
"gatsby-plugin-sharp": "*",
"gatsby-transformer-sharp": "*"
},
"engines": {
"node": ">=18"
}
}