-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.64 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
{
"name": "query-stuff",
"description": "Type-safe query/mutation option factories for Tanstack/react-query",
"version": "0.2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"directory": "git+https://github.com/MlNl-PEKKA/query-stuff.git"
},
"author": {
"name": "Punith G",
"email": "punithg360@gmail.com"
},
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"LICENSE.md",
"README.md",
"lib/",
"package.json"
],
"scripts": {
"build": "tsup",
"coverage": "vitest run --coverage",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"release": "pnpm build && pnpm changeset publish",
"test": "vitest",
"type_check": "tsc"
},
"keywords": [
"typescript",
"tanstack/react-query"
],
"license": "MIT",
"peerDependencies": {
"@tanstack/react-query": ">=5"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.18.0",
"@tanstack/react-query": ">=5",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitest/coverage-v8": "^3.0.1",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "^9.18.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.5",
"type-fest": "^4.32.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^3.0.1",
"zod": ">=3.24"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0"
}
}