-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-courier",
"version": "2.0.2",
"description": "Composition of React query and Axios, the simple and powerful API call",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsup ./package/index.ts --format esm,cjs --dts",
"lint": "eslint \"{package/src/*,example/src/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{package/src,package/tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"prepublishOnly": "npm run prettier && npm run lint",
"dev:exam": "cd ./example && npm run dev",
"dev:package": "npm run build -- --watch",
"dev": "concurrently npm:dev:*",
"release": "npm run build && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ierfaaan/react-courier.git"
},
"keywords": [
"axios",
"tanstack",
"react-query",
"tanstack-query"
],
"author": "Erfan Abbasi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ierfaaan/react-courier/issues"
},
"homepage": "https://github.com/ierfaaan/react-courier#readme",
"dependencies": {
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"axios": "^1.3.4",
"camelcase": "8.0.0"
},
"peerDependencies": {
"react": ">=16"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^8.0.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^15.10.0",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}",
"push": true,
"commit": true,
"tag": true,
"requireCommits": false,
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"draft": true
}
}
}