-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
{
"name": "bgg-api-wrapper",
"version": "1.3.4",
"description": "Parses XML responses from the Boardgamegeek API in an opinionated way.",
"sideEffects": false,
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"browser": "./dist/index.mjs",
"bun": "./dist/index.mjs",
"deno": "./dist/index.mjs",
"edge-light": "./dist/index.mjs",
"edge-routine": "./dist/index.mjs",
"lagon": "./dist/index.mjs",
"netlify": "./dist/index.mjs",
"react-native": "./dist/index.mjs",
"wintercg": "./dist/index.mjs",
"worker": "./dist/index.mjs",
"workerd": "./dist/index.mjs",
"node": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"./node": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"prepack": "bun run build",
"play": "NODE_ENV=dev bun run playground/index.ts",
"release": "bun test && changelogen --release && npm publish && git push --follow-tags",
"test": "bun run lint && bun test --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fast-xml-parser": "^4.2.4",
"ofetch": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.8.7",
"bun-types": "^1.0.7",
"changelogen": "^0.5.5",
"eslint": "^8.52.0",
"eslint-config-unjs": "^0.2.1",
"eslint-plugin-unused-imports": "^3.0.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
},
"packageManager": "[email protected]"
}