-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "@tanstack/vue-query-devtools",
"version": "5.74.6",
"description": "Developer tools to interact with and visualize the TanStack/vue-query cache",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/query.git",
"directory": "packages/vue-query-devtools"
},
"homepage": "https://tanstack.com/query",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {
"clean": "premove ./build ./coverage ./dist-ts",
"compile": "vue-tsc --build",
"test:eslint": "eslint ./src",
"test:types": "vue-tsc --build",
"test:build": "publint --strict && attw --pack",
"build": "pnpm run compile && vite build"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/esm/index.js",
"exports": {
".": {
"@tanstack/custom-condition": "./src/index.ts",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"./production": {
"@tanstack/custom-condition": "./src/production.ts",
"types": "./dist/esm/production.d.ts",
"default": "./dist/esm/production.js"
},
"./dist/production.js": {
"types": "./dist/esm/production.d.ts",
"default": "./dist/esm/production.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"src",
"!src/__tests__"
],
"dependencies": {
"@tanstack/query-devtools": "workspace:*"
},
"devDependencies": {
"@tanstack/vue-query": "workspace:*",
"@vitejs/plugin-vue": "^5.2.1",
"eslint-plugin-vue": "^9.27.0",
"typescript": "5.8.3",
"vite": "^6.2.4",
"vue": "^3.4.27",
"vue-tsc": "^2.2.8"
},
"peerDependencies": {
"@tanstack/vue-query": "workspace:^",
"vue": "^3.3.0"
}
}