-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.5 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
62
63
64
65
66
67
68
69
70
{
"name": "@api-wrappers/igdb-wrapper",
"version": "0.4.0",
"description": "Type-safe TypeScript client for the IGDB API with a fluent query builder, automatic retries, and built-in rate limiting",
"module": "./dist/index.mjs",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "bun run src/index.ts",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepublishOnly": "npm run typecheck && npm run build"
},
"keywords": [
"igdb",
"igdb-api",
"@api-wrappers/igdb-wrapper",
"api-wrapper",
"games",
"game-api",
"typescript",
"type-safe",
"query-builder",
"twitch",
"nodejs",
"bun"
],
"author": "api-wrappers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Api-Wrappers/igdb-wrapper.git"
},
"homepage": "https://github.com/Api-Wrappers/igdb-wrapper#readme",
"bugs": {
"url": "https://github.com/Api-Wrappers/igdb-wrapper/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/bun": "latest",
"tsdown": "^0.21.5",
"typescript": "^5.4.0"
},
"peerDependencies": {
"typescript": "^5"
}
}