|
| 1 | +{ |
| 2 | + "name": "@tanstack/preact-query-devtools", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Developer tools to interact with and visualize the TanStack/preact-query cache", |
| 5 | + "author": "tannerlinsley", |
| 6 | + "license": "MIT", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "git+https://github.com/TanStack/query.git", |
| 10 | + "directory": "packages/preact-query-devtools" |
| 11 | + }, |
| 12 | + "homepage": "https://tanstack.com/query", |
| 13 | + "funding": { |
| 14 | + "type": "github", |
| 15 | + "url": "https://github.com/sponsors/tannerlinsley" |
| 16 | + }, |
| 17 | + "scripts": { |
| 18 | + "clean": "premove ./build ./coverage ./dist-ts", |
| 19 | + "compile": "tsc --build", |
| 20 | + "test:eslint": "eslint --concurrency=auto ./src", |
| 21 | + "test:types": "npm-run-all --serial test:types:*", |
| 22 | + "test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js --build tsconfig.legacy.json", |
| 23 | + "test:types:ts51": "node ../../node_modules/typescript51/lib/tsc.js --build tsconfig.legacy.json", |
| 24 | + "test:types:ts52": "node ../../node_modules/typescript52/lib/tsc.js --build tsconfig.legacy.json", |
| 25 | + "test:types:ts53": "node ../../node_modules/typescript53/lib/tsc.js --build tsconfig.legacy.json", |
| 26 | + "test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js --build tsconfig.legacy.json", |
| 27 | + "test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js --build tsconfig.legacy.json", |
| 28 | + "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js --build tsconfig.legacy.json", |
| 29 | + "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js --build tsconfig.legacy.json", |
| 30 | + "test:types:tscurrent": "tsc --build", |
| 31 | + "test:lib": "vitest", |
| 32 | + "test:lib:dev": "pnpm run test:lib --watch", |
| 33 | + "test:build": "publint --strict && attw --pack", |
| 34 | + "build": "tsup --tsconfig tsconfig.prod.json", |
| 35 | + "build:dev": "tsup --watch" |
| 36 | + }, |
| 37 | + "type": "module", |
| 38 | + "types": "build/legacy/index.d.ts", |
| 39 | + "main": "build/legacy/index.cjs", |
| 40 | + "module": "build/legacy/index.js", |
| 41 | + "exports": { |
| 42 | + ".": { |
| 43 | + "@tanstack/custom-condition": "./src/index.ts", |
| 44 | + "import": { |
| 45 | + "types": "./build/modern/index.d.ts", |
| 46 | + "default": "./build/modern/index.js" |
| 47 | + }, |
| 48 | + "require": { |
| 49 | + "types": "./build/modern/index.d.cts", |
| 50 | + "default": "./build/modern/index.cjs" |
| 51 | + } |
| 52 | + }, |
| 53 | + "./production": { |
| 54 | + "import": { |
| 55 | + "types": "./build/modern/production.d.ts", |
| 56 | + "default": "./build/modern/production.js" |
| 57 | + }, |
| 58 | + "require": { |
| 59 | + "types": "./build/modern/production.d.cts", |
| 60 | + "default": "./build/modern/production.cjs" |
| 61 | + } |
| 62 | + }, |
| 63 | + "./build/modern/production.js": { |
| 64 | + "import": { |
| 65 | + "types": "./build/modern/production.d.ts", |
| 66 | + "default": "./build/modern/production.js" |
| 67 | + }, |
| 68 | + "require": { |
| 69 | + "types": "./build/modern/production.d.cts", |
| 70 | + "default": "./build/modern/production.cjs" |
| 71 | + } |
| 72 | + }, |
| 73 | + "./package.json": "./package.json" |
| 74 | + }, |
| 75 | + "sideEffects": false, |
| 76 | + "files": ["build", "src", "!src/__tests__"], |
| 77 | + "dependencies": { |
| 78 | + "@tanstack/query-devtools": "workspace:*" |
| 79 | + }, |
| 80 | + "devDependencies": { |
| 81 | + "@preact/preset-vite": "^2.10.2", |
| 82 | + "@tanstack/preact-query": "workspace:*", |
| 83 | + "@testing-library/preact": "^3.2.4", |
| 84 | + "npm-run-all2": "^5.0.0", |
| 85 | + "preact": "^10.28.0", |
| 86 | + "typescript-eslint": "^8.54.0" |
| 87 | + }, |
| 88 | + "peerDependencies": { |
| 89 | + "@tanstack/preact-query": "workspace:^", |
| 90 | + "preact": "^10.0.0" |
| 91 | + } |
| 92 | +} |
0 commit comments