-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1005 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1005 Bytes
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
{
"name": "react-query-mock-data",
"version": "1.0.6",
"module": "index.ts",
"author": "Mohsen Fallahnejad",
"license": "MIT",
"description": "A library for mocking data with React Query",
"keywords": ["react", "react-query", "mock", "data"],
"main": "index.ts",
"types": "index.d.ts",
"bin": {
"react-query-mock-data": "./dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"dev": "bun run index.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/mohsenfallahnjd/react-query-mock-data"
},
"homepage": "https://github.com/mohsenfallahnjd/react-query-mock-data",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": ["dist"],
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@tanstack/react-query": "^5.90.11"
}
}