-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 832 Bytes
/
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
{
"name": "network-error-handling",
"version": "1.1.5",
"description": "An useful error handler for axios network requests in a React application",
"license": "MIT",
"keywords": [
"axios",
"error-handling"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vboechat/network-error-handling"
},
"author": {
"name": "Victor Ribeiro Boechat",
"email": "victor2005contato@proton.me",
"url": "https://www.vboechat.com.br"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && cp ./dist/index.js ./dist/index.mjs",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.12.12",
"axios": "^1.6.8",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}