| { | |
| "name": "@tanstack/vue-query", | |
| "version": "5.83.0", | |
| "description": "Hooks for managing, caching and syncing asynchronous and remote data in Vue", | |
| "author": "Damian Osipiuk", | |
| "license": "MIT", | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/TanStack/query.git", | |
| "directory": "packages/vue-query" | |
| }, | |
| "homepage": "https://tanstack.com/query", | |
| "funding": { | |
| "type": "github", | |
| "url": "https://github.com/sponsors/tannerlinsley" | |
| }, | |
| "scripts": { | |
| "clean": "premove ./build ./coverage ./dist-ts", | |
| "compile": "tsc --build", | |
| "test:eslint": "eslint ./src", | |
| "test:types": "vue-demi-switch 3 && pnpm run \"/^test:types:ts[0-9]{2}$/\"", | |
| "test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts51": "node ../../node_modules/typescript51/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts52": "node ../../node_modules/typescript52/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts53": "node ../../node_modules/typescript53/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js --build tsconfig.legacy.json", | |
| "test:types:tscurrent": "tsc --build", | |
| "test:lib": "pnpm run test:lib:2 && pnpm run test:lib:2.7 && pnpm run test:lib:3", | |
| "test:lib:2": "vue-demi-switch 2 vue2 && vitest", | |
| "test:lib:2.7": "vue-demi-switch 2.7 vue2.7 && vitest", | |
| "test:lib:3": "vue-demi-switch 3 && vitest", | |
| "test:lib:dev": "pnpm run test:lib --watch", | |
| "test:build": "publint --strict && attw --pack", | |
| "build": "tsup --tsconfig tsconfig.prod.json" | |
| }, | |
| "type": "module", | |
| "types": "build/legacy/index.d.ts", | |
| "main": "build/legacy/index.cjs", | |
| "module": "build/legacy/index.js", | |
| "exports": { | |
| ".": { | |
| "@tanstack/custom-condition": "./src/index.ts", | |
| "import": { | |
| "types": "./build/modern/index.d.ts", | |
| "default": "./build/modern/index.js" | |
| }, | |
| "require": { | |
| "types": "./build/modern/index.d.cts", | |
| "default": "./build/modern/index.cjs" | |
| } | |
| }, | |
| "./package.json": "./package.json" | |
| }, | |
| "sideEffects": false, | |
| "files": [ | |
| "build", | |
| "src", | |
| "!src/__tests__" | |
| ], | |
| "dependencies": { | |
| "@tanstack/match-sorter-utils": "^8.19.4", | |
| "@tanstack/query-core": "workspace:*", | |
| "@vue/devtools-api": "^6.6.3", | |
| "vue-demi": "^0.14.10" | |
| }, | |
| "devDependencies": { | |
| "@tanstack/query-test-utils": "workspace:*", | |
| "@vitejs/plugin-vue": "^5.2.4", | |
| "@vue/composition-api": "1.7.2", | |
| "eslint-plugin-vue": "^9.27.0", | |
| "vue": "^3.4.27", | |
| "vue2": "npm:vue@2.6", | |
| "vue2.7": "npm:vue@2.7" | |
| }, | |
| "peerDependencies": { | |
| "@vue/composition-api": "^1.1.2", | |
| "vue": "^2.6.0 || ^3.3.0" | |
| }, | |
| "peerDependenciesMeta": { | |
| "@vue/composition-api": { | |
| "optional": true | |
| } | |
| } | |
| } | |