2023-10-10 18:11:57 -04:00
{
"name" : "@tanstack/solid-query-devtools" ,
2026-01-30 10:30:28 +01:00
"version" : "5.91.3" ,
2023-10-10 18:11:57 -04:00
"description" : "Developer tools to interact with and visualize the TanStack/solid-query Query cache" ,
"author" : "tannerlinsley" ,
"license" : "MIT" ,
2024-07-05 12:59:13 +10:00
"repository" : {
"type" : "git" ,
2025-12-07 01:47:55 +11:00
"url" : "git+https://github.com/TanStack/query.git" ,
2024-07-05 12:59:13 +10:00
"directory" : "packages/solid-query-devtools"
} ,
2023-10-10 18:11:57 -04:00
"homepage" : "https://tanstack.com/query" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/tannerlinsley"
} ,
2024-07-05 12:59:13 +10:00
"scripts" : {
2025-01-27 15:58:10 +01:00
"clean" : "premove ./build ./coverage ./dist-ts" ,
"compile" : "tsc --build" ,
2025-09-21 22:26:52 +09:00
"test:eslint" : "eslint --concurrency=auto ./src" ,
2025-02-21 22:14:10 +09:00
"test:types" : "npm run compile && npm-run-all --serial test:types:*" ,
2025-01-27 15:58:10 +01:00
"test:types:ts54" : "node ../../node_modules/typescript54/lib/tsc.js --build" ,
"test:types:ts55" : "node ../../node_modules/typescript55/lib/tsc.js --build" ,
"test:types:ts56" : "node ../../node_modules/typescript56/lib/tsc.js --build" ,
2025-03-04 10:08:58 +01:00
"test:types:ts57" : "node ../../node_modules/typescript57/lib/tsc.js --build" ,
2026-03-09 08:12:35 +01:00
"test:types:ts58" : "node ../../node_modules/typescript58/lib/tsc.js --build" ,
"test:types:ts59" : "node ../../node_modules/typescript59/lib/tsc.js --build" ,
"test:types:ts60" : "node ../../node_modules/typescript60/lib/tsc.js --build" ,
2024-07-05 12:59:13 +10:00
"test:build" : "publint --strict && attw --pack" ,
2025-10-16 13:00:23 +02:00
"test:lib" : "vitest --retry=3" ,
"test:lib:dev" : "pnpm run test:lib --watch" ,
2025-01-27 15:58:10 +01:00
"build" : "tsup --tsconfig tsconfig.prod.json" ,
2024-07-05 12:59:13 +10:00
"build:dev" : "tsup --watch"
} ,
2023-10-10 18:11:57 -04:00
"type" : "module" ,
"main" : "./build/index.cjs" ,
"module" : "./build/index.js" ,
"types" : "./build/index.d.ts" ,
"browser" : { } ,
"exports" : {
2025-11-27 11:10:12 +11:00
"@tanstack/custom-condition" : "./src/index.tsx" ,
2023-10-10 18:11:57 -04:00
"solid" : {
"development" : "./build/dev.jsx" ,
"import" : "./build/index.jsx"
} ,
"development" : {
"import" : {
"types" : "./build/index.d.ts" ,
"default" : "./build/dev.js"
} ,
"require" : "./build/dev.cjs"
} ,
"import" : {
"types" : "./build/index.d.ts" ,
"default" : "./build/index.js"
} ,
"require" : "./build/index.cjs"
} ,
"files" : [
"build" ,
2024-11-06 14:58:35 +01:00
"src" ,
"!src/__tests__"
2023-10-10 18:11:57 -04:00
] ,
"dependencies" : {
"@tanstack/query-devtools" : "workspace:*"
} ,
"devDependencies" : {
2025-10-16 13:00:23 +02:00
"@solidjs/testing-library" : "^0.8.10" ,
2024-07-07 08:56:43 +10:00
"@tanstack/solid-query" : "workspace:*" ,
2025-09-30 15:29:40 +10:00
"npm-run-all2" : "^5.0.0" ,
"solid-js" : "^1.9.7" ,
2023-12-26 00:23:51 +11:00
"tsup-preset-solid" : "^2.2.0" ,
2025-09-30 15:29:40 +10:00
"vite-plugin-solid" : "^2.11.6"
2024-05-18 17:42:42 +10:00
} ,
"peerDependencies" : {
"@tanstack/solid-query" : "workspace:^" ,
"solid-js" : "^1.6.0"
2023-10-10 18:11:57 -04:00
}
}