-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (54 loc) · 1.18 KB
/
package.json
File metadata and controls
55 lines (54 loc) · 1.18 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
{
"name": "@neylorxt/react-request",
"version": "0.1.0",
"description": "It's a mini package that makes it easy for you to send data via axios.",
"keywords": [
"neylorxt",
"react-request",
"neylorxt-react-request",
"axios",
"request",
"react-js",
"react-jsx",
"react-tsx",
"typescript",
"http",
"api",
"jsx",
"tsx"
],
"homepage": "https://github.com/neylorxt/react-request#readme",
"bugs": {
"url": "https://github.com/neylorxt/react-request/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neylorxt/react-request.git"
},
"license": "MIT",
"author": "neylorxt",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist --extensions \".js,.jsx\""
},
"peerDependencies": {
"axios": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"axios": "^1.10.0",
"typescript": "^5.0.0"
}
}