-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.84 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@api-wrappers/igdb-wrapper",
"version": "1.0.1",
"description": "Type-safe IGDB client with a fluent APICalypse query builder, endpoint helpers, auth, retries, and 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",
"docs",
"examples",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "bun run src/index.ts",
"build": "tsdown --config tsdown.config.mjs --config-loader native",
"test": "bun test",
"typecheck": "tsc --noEmit",
"check": "bun run typecheck && bun run test && bun run build",
"verify": "bun run check && npm pack --dry-run",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"prepublishOnly": "bun run check"
},
"keywords": [
"igdb",
"igdb-api",
"@api-wrappers/igdb-wrapper",
"api-wrapper",
"games",
"game-api",
"game-database",
"typescript",
"type-safe",
"query-builder",
"fluent-query-builder",
"apicalypse",
"twitch",
"twitch-api",
"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.31.0",
"@types/bun": "^1.3.13",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"typescript": "^5 || ^6"
},
"dependencies": {
"@api-wrappers/api-core": "^1.0.1"
}
}