forked from faremeter/faremeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
{
"name": "@faremeter/fetch",
"version": "0.14.0",
"description": "HTTP fetch wrapper that automatically handles 402 Payment Required responses with x402 protocol",
"keywords": [
"faremeter",
"typescript",
"sdk",
"api",
"x402",
"ai"
],
"license": "LGPL-3.0-only",
"type": "module",
"main": "dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"require": "./dist/src/index.js",
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./internal": {
"require": "./dist/src/internal.js",
"import": "./dist/src/internal.js",
"types": "./dist/src/internal.d.ts"
}
},
"files": [
"dist"
],
"packageManager": "pnpm@10.12.1",
"devDependencies": {
"@eslint/js": "catalog:",
"@tapjs/asserts": "catalog:",
"@tapjs/tsx": "catalog:",
"@types/web": "catalog:",
"@typescript/lib-dom": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"tap": "catalog:",
"tsc-esm-fix": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"typescript-language-server": "catalog:"
},
"dependencies": {
"@faremeter/types": "workspace:^",
"arktype": "catalog:"
},
"tap": {
"plugin": [
"@tapjs/tsx",
"!@tapjs/typescript"
]
}
}