-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.93 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.93 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
84
85
86
87
88
89
90
{
"name": "@api-wrappers/api-core",
"version": "1.0.2",
"description": "Shared TypeScript HTTP runtime for Api-Wrappers packages with typed requests, plugins, retries, timeouts, GraphQL, and custom transports.",
"repository": {
"type": "git",
"url": "https://github.com/Api-Wrappers/api-core"
},
"homepage": "https://github.com/Api-Wrappers/api-core#readme",
"bugs": {
"url": "https://github.com/Api-Wrappers/api-core/issues"
},
"type": "module",
"packageManager": "bun@1.3.13",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"ROADMAP.md"
],
"keywords": [
"api-core",
"api-wrapper",
"api-wrappers",
"http",
"http-client",
"client",
"fetch",
"plugin",
"cache",
"retry",
"timeout",
"graphql",
"transport",
"bun",
"api",
"wrapper",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "tsdown",
"test": "bun test",
"typecheck": "tsc --noEmit",
"check": "biome check --write .",
"check:ci": "biome check .",
"pack:dry-run": "bun pm pack --dry-run",
"verify": "bun run check:ci && bun run typecheck && bun test && bun run build && bun run pack:dry-run",
"prepack": "bun run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@biomejs/biome": "2.4.9",
"@types/bun": "1.3.11",
"tsdown": "0.21.7",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5 || ^6"
}
}