-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@mehasoft/request",
"version": "1.1.4",
"description": "A lightweight and environment-aware HTTP client for modern JavaScript apps including Next.js, React, and Expo.",
"main": "src/index.js",
"type": "module",
"types": "index.d.ts",
"exports": {
".": {
"import": "./src/index.js"
}
},
"files": [
"src/",
"README.md",
"README.tr.md",
"LICENSE"
],
"scripts": {
"test": "echo \"No tests specified. Coming soon!\" && exit 0",
"lint": "echo \"No linter defined. Add ESLint or similar for code quality.\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mehasoft/request.git"
},
"keywords": [
"http",
"request",
"fetch",
"api",
"rest",
"nextjs",
"react",
"expo",
"client",
"utility"
],
"author": "Mehasoft <info@mehasoft.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mehasoft/request/issues"
},
"homepage": "https://github.com/mehasoft/request#readme",
"engines": {
"node": ">=14"
},
"dependencies": {},
"directories": {
"lib": "src",
"doc": "docs",
"example": "examples"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}