-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "axly",
"version": "1.1.42",
"type": "module",
"description": "Axly is a powerful and flexible HTTP client for React and Node.js, built on top of Axios. It simplifies API requests with many features.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"axly": "dist/index.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --fix",
"watch": "tsc --watch",
"release": "tsc && npm version patch && npm publish --access public --tag latest",
"prettier:check": "prettier -c .",
"prettier": "prettier -w -u .",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.8.4",
"react": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@harshalkatakiya/prettier-config": "^1.0.28",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0"
},
"lint-staged": {
"**/*": "prettier -w -u ."
},
"license": "MIT",
"homepage": "https://www.npmjs.com/package/axly",
"repository": {
"type": "git",
"url": "git+https://github.com/Harshalkatakiya/axly.git"
},
"bugs": {
"url": "https://github.com/Harshalkatakiya/axly/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": {
"name": "Harshal Katakiya",
"email": "katakiyaharshl001@gmail.com",
"url": "https://github.com/Harshalkatakiya"
},
"keywords": [
"Axly",
"Axly Axios Wrapper",
"Axios Wrapper for React",
"Axios Wrapper for Node.js",
"HTTP Client for React",
"HTTP Client for Node.js",
"Axios React Hook",
"API Request Management",
"React API Client",
"Node.js API Client"
]
}