-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.07 KB
/
package.json
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
{
"name": "effect-fetch",
"version": "2.1.0",
"description": "fetch + interceptors + strongly typed errors",
"type": "module",
"homepage": "https://github.com/joshamaju/effect-fetch",
"main": "./dist/index.js",
"types": "./dist/dts/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/joshamaju/effect-fetch.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --w",
"docs": "docgen",
"test": "vitest run",
"clean": "rimraf dist",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"example": "tsx ./example/index.ts",
"prepublish": "pnpm clean && pnpm build"
},
"files": [
"dist",
"package.json"
],
"keywords": [
"fetch",
"http",
"ajax",
"effect",
"interceptors"
],
"author": "Joshua Amaju <[email protected]>",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@effect/docgen": "^0.3.4",
"effect": "^3.5.7",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tsx": "^4.16.2",
"typescript": "^5.2.2",
"vitest": "^1.0.4"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/dts/index.d.ts"
},
"./Fetch": {
"import": "./dist/Fetch.js",
"types": "./dist/dts/Fetch.d.ts"
},
"./Request": {
"import": "./dist/Request.js",
"types": "./dist/dts/Request.d.ts"
},
"./Response": {
"import": "./dist/Response.js",
"types": "./dist/dts/Response.d.ts"
},
"./Interceptor": {
"import": "./dist/Interceptor.js",
"types": "./dist/dts/Interceptor.d.ts"
},
"./Error": {
"import": "./dist/Error.js",
"types": "./dist/dts/Error.d.ts"
},
"./adapter/*": {
"import": "./dist/adapters/*.js",
"types": "./dist/dts/adapters/*.d.ts"
},
"./interceptors/*": {
"import": "./dist/Interceptors/*.js",
"types": "./dist/dts/Interceptors/*.d.ts"
}
},
"peerDependencies": {
"effect": "^3.5.7"
}
}