-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.76 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
{
"name": "bgg-xml-api-client",
"type": "module",
"version": "0.2.0-beta.13",
"packageManager": "[email protected]",
"description": "A client for Boardgamegeek.com XML API (v1 and v2) that returns data as JS object.",
"author": {
"name": "Marcin Kurkiewicz"
},
"license": "MIT",
"homepage": "https://github.com/Qrzy/bgg-xml-api-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/Qrzy/bgg-xml-api-client.git"
},
"bugs": {
"url": "https://github.com/Qrzy/bgg-xml-api-client/issues"
},
"keywords": [
"boardgamegeek",
"boardgamegeek.com",
"bgg",
"bgg api",
"xml api",
"bgg json"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"nodetest": "node --version",
"playground": "cd playground && pnpm i && pnpm run dev",
"test": "vitest",
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build",
"rel": "bumpp"
},
"dependencies": {
"fast-xml-parser": "^4.3.2",
"ofetch": "^1.3.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.3.1",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"bumpp": "^9.2.0",
"eslint": "8.55.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"typescript": "5.3.2",
"unbuild": "^2.0.0",
"vitest": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}