{
|
|||
"name": "@tanstack/solid-query",
|
|||
"version": "5.91.3",
|
|||
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
|
|||
"author": "tannerlinsley",
|
|||
"license": "MIT",
|
|||
"repository": {
|
|||
"type": "git",
|
|||
|
|
"url": "git+https://github.com/TanStack/query.git",
|
||
"directory": "packages/solid-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",
|
|||
|
ci: update workspace config (#9671)
* chore: update workspace config
* Update more deps
* Fix issues
|
"test:eslint": "eslint --concurrency=auto ./src",
|
||
"test:types": "npm-run-all --serial test:types:*",
|
|||
"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:ts58": "node ../../node_modules/typescript58/lib/tsc.js --build tsconfig.legacy.json",
|
|||
"test:types:ts59": "node ../../node_modules/typescript59/lib/tsc.js --build tsconfig.legacy.json",
|
|||
"test:types:tscurrent": "tsc --build",
|
|||
"test:types:ts60": "node ../../node_modules/typescript60/lib/tsc.js --build tsconfig.legacy.json",
|
|||
|
|
"test:lib": "vitest --retry=3",
|
||
"test:lib:dev": "pnpm run test:lib --watch",
|
|||
"test:build": "publint --strict && attw --pack",
|
|||
"build": "tsup --tsconfig tsconfig.prod.json",
|
|||
|
|
"build:watch": "tsup --watch"
|
||
},
|
|||
"type": "module",
|
|||
"main": "./build/index.cjs",
|
|||
"module": "./build/index.js",
|
|||
"types": "./build/index.d.ts",
|
|||
"browser": {},
|
|||
"exports": {
|
|||
|
|
"@tanstack/custom-condition": "./src/index.ts",
|
||
"development": {
|
|||
"import": {
|
|||
"types": "./build/index.d.ts",
|
|||
"default": "./build/dev.js"
|
|||
},
|
|||
|
|
"require": {
|
||
"types": "./build/index.d.cts",
|
|||
"default": "./build/dev.cjs"
|
|||
}
|
|||
},
|
|||
"import": {
|
|||
"types": "./build/index.d.ts",
|
|||
"default": "./build/index.js"
|
|||
},
|
|||
|
|
"require": {
|
||
"types": "./build/index.d.cts",
|
|||
"default": "./build/index.cjs"
|
|||
}
|
|||
},
|
|||
"files": [
|
|||
"build",
|
|||
|
|
"src",
|
||
"!src/__tests__"
|
|||
],
|
|||
"dependencies": {
|
|||
|
|
"@tanstack/query-core": "workspace:*"
|
||
},
|
|||
"devDependencies": {
|
|||
|
|
"@solidjs/testing-library": "^0.8.10",
|
||
"@tanstack/query-test-utils": "workspace:*",
|
|||
"npm-run-all2": "^5.0.0",
|
|||
"solid-js": "^1.9.7",
|
|||
"tsup-preset-solid": "^2.2.0",
|
|||
"vite-plugin-solid": "^2.11.6"
|
|||
},
|
|||
"peerDependencies": {
|
|||
|
|
"solid-js": "^1.6.0"
|
||
}
|
|||
}
|