-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.54 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
{
"name": "feaxios",
"version": "0.0.22",
"description": "Tiny Fetch wrapper that provides a similar API to Axios",
"main": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./retry": {
"import": {
"types": "./dist/retry.d.ts",
"default": "./dist/retry.mjs"
},
"require": {
"types": "./dist/retry.d.ts",
"default": "./dist/retry.js"
}
}
},
"typesVersions": {
"*": {
"retry": [
"./dist/retry.d.ts"
]
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest",
"publish": "pnpm publish --access public --no-git-checks",
"test-ui": "vitest --ui",
"format": "prettier --write './**/*.{ts,md}'",
"format:check": "prettier --check './**/*.{ts,md}'"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": [
"prettier"
]
},
"repository": "divyam234/feaxios",
"keywords": [
"axios",
"fetch"
],
"license": "MIT",
"homepage": "https://github.com/divyam234/feaxios",
"devDependencies": {
"@types/node": "^20.11.17",
"@vitest/ui": "^1.2.2",
"msw": "^2.2.0",
"nock": "^13.5.1",
"prettier": "^3.2.5",
"terser": "^5.27.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"dependencies": {
"is-retry-allowed": "^3.0.0"
}
}