-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.91 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.91 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
{
"name": "unclient",
"description": "👮♀️ Type-safe interactions with any HTTP API",
"version": "0.13.0",
"author": {
"name": "Nick Sinclair",
"email": "nicksinclair@xtra.co.nz",
"url": "https://github.com/sinclairnick"
},
"dependencies": {
"schema-shift": "^0.4.0",
"ufo": "^1.5.3"
},
"devDependencies": {
"@tanstack/react-query": "^5.65.1",
"@types/node": "^22.12.0",
"axios": "^1.7.9",
"esbuild-sub-exports": "^0.10.0",
"tsup": "^8.0.1",
"typescript": "^5.7.2",
"vitest": "^1.2.2",
"zod": "^3.22.4"
},
"keywords": [
"client",
"inference",
"type-safe",
"web"
],
"files": [
"dist",
"README.md",
"LICENSE",
"dist/axios.js",
"dist/axios.d.ts",
"dist/axios.mjs",
"axios.js",
"axios.d.ts",
"dist/fetch.js",
"dist/fetch.d.ts",
"dist/fetch.mjs",
"fetch.js",
"fetch.d.ts",
"dist/axios.ts",
"dist/fetch.ts",
"dist/query.js",
"dist/query.mjs",
"dist/query.d.ts",
"dist/query.ts",
"query.js",
"query.d.ts"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./axios": {
"types": "./dist/axios.d.ts",
"import": "./dist/axios.mjs",
"require": "./dist/axios.js"
},
"./fetch": {
"types": "./dist/fetch.d.ts",
"import": "./dist/fetch.mjs",
"require": "./dist/fetch.js"
},
"./query": {
"types": "./dist/query.d.ts",
"import": "./dist/query.mjs",
"require": "./dist/query.js"
}
},
"private": false,
"scripts": {
"build": "tsup-node",
"check": "tsc --noEmit",
"publish-pkg": "pnpm run build && pnpm publish --access=public --no-git-checks",
"test": "vitest"
},
"sideEffects": false,
"types": "dist/index.d.ts"
}