|
| 1 | +{ |
| 2 | + "name": "@tanstack/vue-router-ssr-query", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Modern and scalable routing for Vue applications", |
| 5 | + "author": "Tanner Linsley", |
| 6 | + "license": "MIT", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/TanStack/router.git", |
| 10 | + "directory": "packages/vue-router-ssr-query" |
| 11 | + }, |
| 12 | + "homepage": "https://tanstack.com/router", |
| 13 | + "funding": { |
| 14 | + "type": "github", |
| 15 | + "url": "https://github.com/sponsors/tannerlinsley" |
| 16 | + }, |
| 17 | + "keywords": [ |
| 18 | + "vue", |
| 19 | + "location", |
| 20 | + "router", |
| 21 | + "routing", |
| 22 | + "async", |
| 23 | + "async router", |
| 24 | + "typescript" |
| 25 | + ], |
| 26 | + "scripts": { |
| 27 | + "clean": "rimraf ./dist && rimraf ./coverage", |
| 28 | + "test:eslint": "eslint ./src", |
| 29 | + "test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"", |
| 30 | + "test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js", |
| 31 | + "test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js", |
| 32 | + "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js", |
| 33 | + "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js", |
| 34 | + "test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js", |
| 35 | + "test:types:ts59": "tsc", |
| 36 | + "test:unit": "exit 0; vitest", |
| 37 | + "test:unit:dev": "pnpm run test:unit --watch", |
| 38 | + "test:build": "publint --strict && attw --ignore-rules no-resolution --pack .", |
| 39 | + "build": "vite build" |
| 40 | + }, |
| 41 | + "type": "module", |
| 42 | + "types": "dist/esm/index.d.ts", |
| 43 | + "main": "dist/cjs/index.cjs", |
| 44 | + "module": "dist/esm/index.js", |
| 45 | + "exports": { |
| 46 | + ".": { |
| 47 | + "import": { |
| 48 | + "types": "./dist/esm/index.d.ts", |
| 49 | + "default": "./dist/esm/index.js" |
| 50 | + }, |
| 51 | + "require": { |
| 52 | + "types": "./dist/cjs/index.d.cts", |
| 53 | + "default": "./dist/cjs/index.cjs" |
| 54 | + } |
| 55 | + }, |
| 56 | + "./package.json": "./package.json" |
| 57 | + }, |
| 58 | + "sideEffects": false, |
| 59 | + "files": [ |
| 60 | + "dist", |
| 61 | + "src" |
| 62 | + ], |
| 63 | + "engines": { |
| 64 | + "node": ">=12" |
| 65 | + }, |
| 66 | + "dependencies": { |
| 67 | + "@tanstack/router-ssr-query-core": "workspace:*" |
| 68 | + }, |
| 69 | + "devDependencies": { |
| 70 | + "@tanstack/vue-query": "^5.92.0", |
| 71 | + "@tanstack/vue-router": "workspace:*", |
| 72 | + "@vitejs/plugin-vue-jsx": "^4.1.2", |
| 73 | + "vue": "^3.5.25" |
| 74 | + }, |
| 75 | + "peerDependencies": { |
| 76 | + "@tanstack/query-core": ">=5.90.0", |
| 77 | + "@tanstack/vue-query": ">=5.90.0", |
| 78 | + "@tanstack/vue-router": ">=1.127.0", |
| 79 | + "vue": "^3.3.0" |
| 80 | + } |
| 81 | +} |
0 commit comments