-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "react-declarative-http",
"version": "0.0.17",
"description": "Lightweight React library enabling (really) simple data fetching by combining the better of imperative & declarative paradigms",
"files": [
"dist/*"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
"require": "./dist/index.cjs.js",
"module": "./dist/index.esm.js"
},
"sideEffects": false,
"scripts": {
"build": "bunchee ./src/index.js",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devdufutur/react-declarative-http.git"
},
"keywords": [
"react",
"javascript",
"fetch",
"api",
"http",
"library",
"declarative",
"imperative"
],
"author": "DevDuFutur (Rudy Nappée)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/devdufutur/react-declarative-http/issues"
},
"homepage": "https://github.com/devdufutur/react-declarative-http#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^2.1.0",
"bunchee": "^2.1.2",
"jsdom": "^20.0.0",
"msw": "^0.47.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^3.1.0",
"vitest": "^0.23.2"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"dependencies": {
"prop-types": "^15.8.1",
"whatwg-fetch": "^3.6.2"
}
}