-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.94 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.94 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "wiretyped",
"version": "0.3.8",
"description": "Universal fetch-based HTTP client with robust error handling, retries, caching, SSE, and Standard Schema validation.",
"type": "module",
"keywords": [
"ajax",
"request",
"url",
"http-client",
"api-client",
"rest-client",
"fetch",
"fetch-api",
"fetch-client",
"browser",
"isomorphic",
"universal",
"retry",
"cache",
"sse",
"error-first",
"error-handling",
"typescript",
"typed",
"type-safe",
"standard-schema"
],
"author": "Kasper Rynning-Tønnesen <kasperrt@users.noreply.github.com> (https://github.com/kasperrt)",
"license": "MIT",
"homepage": "https://wiretyped.io",
"repository": {
"type": "git",
"url": "git+https://github.com/kasperrt/wiretyped.git"
},
"packageManager": "pnpm@10.33.2",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/types/index.d.mts",
"files": ["dist"],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"./core": {
"import": {
"types": "./dist/types/core/index.d.mts",
"default": "./dist/core.mjs"
},
"require": {
"types": "./dist/types/core/index.d.cts",
"default": "./dist/core.cjs"
},
"default": "./dist/core.mjs"
},
"./error": {
"import": {
"types": "./dist/types/error/index.d.mts",
"default": "./dist/error.mjs"
},
"require": {
"types": "./dist/types/error/index.d.cts",
"default": "./dist/error.cjs"
},
"default": "./dist/error.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "vite build && pnpm run build:types",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly && node scripts/generate-cts-types.mjs",
"check": "pnpm check:lint && pnpm check:format && pnpm check:ts",
"check:format": "pnpm exec biome format --error-on-warnings",
"check:lint": "pnpm exec biome lint --error-on-warnings",
"check:ts": "tsc --noEmit",
"check:watch": "tsc --noEmit --watch",
"fix": "pnpm exec biome check --write",
"fix:format": "pnpm exec biome format --write",
"fix:lint": "pnpm exec biome lint --write",
"smoke:entrypoints": "node scripts/smoke-entrypoints.mjs",
"smoke:dts": "node scripts/smoke-dts.mjs",
"smoke:resolve": "node scripts/smoke-resolve.mjs",
"smoke:pack": "node scripts/smoke-pack.mjs",
"smoke:types": "pnpm exec tsc -p scripts/types-smoke/tsconfig.json",
"test": "pnpm test:integrations && pnpm test:e2e",
"test:integrations": "vitest run --no-isolate --no-file-parallelism",
"test:e2e": "pnpm test:e2e:node && pnpm test:e2e:bun && pnpm test:e2e:deno && pnpm test:e2e:browser && pnpm test:e2e:workers",
"test:e2e:node": "node e2e/run-node.mjs",
"test:e2e:bun": "bun run e2e/run-bun.mjs",
"test:e2e:deno": "deno run --allow-net --allow-read --allow-run=node e2e/run-deno.ts",
"test:e2e:browser": "node e2e/run-browser.mjs",
"test:e2e:workers": "node e2e/run-workers.mjs",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@codecov/vite-plugin": "^2.0.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"miniflare": "^4.20260430.0",
"oxc-minify": "^0.128.0",
"playwright": "^1.59.1",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitepress": "2.0.0-alpha.17",
"vitest": "^4.1.5",
"zod": "^4.4.3"
}
}