-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.77 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
{
"name": "@convex-dev/react-query",
"version": "0.0.0-alpha.8",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:db dev:frontend",
"dev:db": "convex dev",
"dev:frontend": "vite --open --clearScreen false",
"build": "tshy",
"lint": "eslint",
"preview": "vite preview",
"test:types": "tsc --noEmit",
"prepare": "tshy"
},
"files": [
"dist",
"src/index.ts",
"LICENSE"
],
"tshy": {
"dialects": [
"esm",
"commonjs"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"exclude": [
"src/example.tsx",
"src/**/*.test.ts"
],
"selfLink": false
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"convex": "^1.17.3"
},
"devDependencies": {
"@tanstack/react-query": "^5.59.15",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@tanstack/react-query-devtools": "^5.59.15",
"@types/node": "^18.17.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.8",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tshy": "^2.0.0",
"typescript": "~5.0.3",
"vite": "5.2.14",
"vitest": "~1.6.0"
},
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"module": "./dist/esm/index.js",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts"
}