-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
{
"name": "fetch-mate",
"version": "0.0.1",
"description": "A simple fetch wrapper for client-side HTTP requests with caching abilities",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/devhe4d/fetch-mate"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && prettier --write src/ && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"keywords": [
"api",
"react",
"cache",
"cache api"
],
"author": "@devhe4d",
"publishConfig": {
"@devhe4d:registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}