-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.3 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
{
"name": "react-query-filter",
"version": "2.0.0",
"description": "Headless query-builder hooks for React applications.",
"license": "MIT",
"author": "Armando Magalhães",
"repository": {
"type": "git",
"url": "https://github.com/armand1m/react-query-filter.git"
},
"homepage": "https://github.com/armand1m/react-query-filter#readme",
"bugs": {
"url": "https://github.com/armand1m/react-query-filter/issues"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@10.9.2",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist coverage",
"dev": "tsup src/index.tsx --format esm,cjs --dts --watch",
"build": "npm run clean && tsup src/index.tsx --format esm,cjs --dts",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p example/tsconfig.json",
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src example/src --ext .ts,.tsx",
"format": "prettier --write .",
"check": "prettier --check .",
"validate": "npm run check && npm run lint && npm run typecheck && npm run test && npm run build",
"example": "npm --prefix example run dev",
"example:build": "npm --prefix example run build",
"prepare": "npm run build"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.14.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"vite": "^6.2.4",
"vitest": "^3.1.1"
}
}