-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.07 KB
/
package.json
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
{
"name": "trpc-rtk-query",
"version": "0.2.0",
"description": "tRPC adapter for RTK Query",
"author": "Otto Ahoniemi",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint . && prettier --check .",
"test": "vitest test/",
"coverage": "vitest run --coverage test/",
"typecheck": "vitest run --typecheck.only test/",
"build": "tsup src/",
"changeset": "changeset",
"release": "pnpm run build && changeset publish",
"knip": "knip"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.6",
"@eslint/js": "^9.5.0",
"@reduxjs/toolkit": "^2.2.5",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.0.2",
"@types/react": "^18.3.3",
"@types/react-redux": "^7.1.33",
"@types/react-test-renderer": "^18.3.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-unicorn": "^56.0.0",
"happy-dom": "^15.7.2",
"jsdom": "^25.0.0",
"knip": "^5.23.0",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-test-renderer": "^18.3.1",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"vite": "^6.0.1",
"vitest": "^1.6.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2"
},
"dependencies": {
"is-what": "^4.1.16"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.6.0"
}