-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "switch-query",
"version": "1.0.0",
"license": "MIT",
"author": "Mikhail Panichev <denis.invader@gmail.com>",
"repository": "github:denisinvader/switch-query",
"bugs": {
"url": "https://github.com/denisinvader/switch-query/issues",
"email": "example@npmjs.com"
},
"type": "module",
"main": "dist/SwitchQuery.js",
"types": "dist/SwitchQuery.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "tsc -b && eslint src && vitest run && vite build"
},
"peerDependencies": {
"@tanstack/react-query": "^5 || ^4",
"react": "^19 || ^18 || ^17 || ^16.8"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@tanstack/react-query": "^5.68.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^16.0.0",
"happy-dom": "^17.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-test-renderer": "^19.0.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.8"
}
}