-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.91 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "tanstack-query-callbacks",
"type": "module",
"version": "0.2.0",
"packageManager": "pnpm@8.15.1",
"author": "zhong666 <hi@zhong666.me>",
"license": "MIT",
"keywords": [
"tanstack",
"tanstack-query",
"vue-query",
"react-query"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/core/index.d.mts",
"default": "./dist/core/index.mjs"
},
"require": {
"types": "./dist/core/index.d.cts",
"default": "./dist/core/index.cjs"
}
},
"./vue": {
"import": "./dist/vue/index.mjs",
"require": "./dist/vue/index.cjs"
},
"./react": {
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.cjs"
}
},
"main": "dist/core/index.cjs",
"module": "dist/core/index.mjs",
"types": "dist/core/index.d.ts",
"files": [
"dist",
"react.d.ts",
"vue.d.ts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "unbuild",
"test": "vitest run --coverage",
"test:vue": "vue-demi-switch 3 && vitest run --dir ./src/vue",
"test:vue-2": "vue-demi-switch 2 vue-2 && vitest run --dir ./src/vue",
"test:vue-2.7": "vue-demi-switch 2.7 vue-2.7 && vitest run --dir ./src/vue",
"dev:test": "vitest",
"release": "release-it --ci",
"lint": "eslint . --cache --cache-location ./node_modules/.cache/eslint",
"posttest:vue-2": "vue-demi-switch 3",
"posttest:vue-2.7": "vue-demi-switch 3"
},
"peerDependencies": {
"@tanstack/query-core": "^4.* || ^5.*",
"@tanstack/react-query": "^4.* || ^5.*",
"@tanstack/vue-query": "^4.* || ^5.*",
"@vue/composition-api": "^1.1.0",
"react": "^18.0.0",
"vue": "^2.6.12 || ^3.2.0"
},
"peerDependenciesMeta": {
"@tanstack/react-query": {
"optional": true
},
"@tanstack/vue-query": {
"optional": true
},
"@vue/composition-api": {
"optional": true
},
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@aa900031/eslint-config": "^1.3.0",
"@release-it/conventional-changelog": "^7.0.2",
"@tanstack/query-core": "^5.18.1",
"@tanstack/query-core-v4": "npm:@tanstack/query-core@^4.36.1",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-query-v4": "npm:@tanstack/react-query@^4.36.1",
"@tanstack/vue-query": "^5.18.1",
"@tanstack/vue-query-v4": "npm:@tanstack/vue-query@^4.37.1",
"@testing-library/react": "14.2.1",
"@testing-library/vue": "^8.0.1",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.19.14",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@vitest/coverage-istanbul": "^1.2.2",
"@vitest/ui": "^1.2.2",
"@vue/composition-api": "^1.7.2",
"conventional-changelog-unjs": "^0.1.1",
"eslint": "^8.56.0",
"happy-dom": "^12.10.3",
"npm-run-all2": "^6.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^16.3.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.2.2",
"vue": "^3.4.15",
"vue-2": "npm:vue@2.7",
"vue-2.7": "npm:vue@2.7"
}
}