-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "@euk-labs/fetchx",
"version": "1.1.1",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/index.js"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"keywords": [
"eureka",
"http-client",
"fetch"
],
"repository": {
"type": "git",
"url": "https://github.com/Eureka-Shoulders/fetchx"
},
"author": {
"name": "Sampaio Leal",
"url": "https://sampaioleal.dev.br"
},
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "rimraf lib && tsc && tsc --project tsconfig.cjs.json",
"lint": "tsc --noEmit && eslint src -c .eslintrc.json --ext tsx,ts",
"test": "vitest run",
"gen-docs": "typedoc --options ./typedoc.config.ts"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitest/coverage-c8": "^0.26.3",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.31.11",
"jsdom": "^20.0.3",
"miragejs": "^0.1.46",
"mobx": "^6.7.0",
"mobx-react-lite": "^3.4.0",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typedoc": "^0.23.23",
"typescript": "^4.9.4",
"vitest": "^0.26.3"
},
"peerDependencies": {
"mobx": ">=6.7.0",
"react": ">=18",
"react-dom": ">=18"
}
}