UNPKG

@westacks/vortex

Version:

Server-based routing for SPAs

83 lines (82 loc) 2.13 kB
{ "name": "@westacks/vortex", "version": "0.0.15", "license": "MIT", "description": "Server-based routing for SPAs", "author": "Dmytro Morozov <puny.flash@gmail.com>", "homepage": "https://westacks.github.io/vortex/", "repository": { "type": "git", "url": "git+https://github.com/westacks/vortex.git" }, "bugs": { "url": "https://github.com/westacks/vortex/issues" }, "keywords": [ "spa", "routing", "vortex" ], "scripts": { "lint": "eslint src", "build": "vite build", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs" }, "dependencies": { "axios": "^1.0.0" }, "devDependencies": { "@eslint/js": "^9.27.0", "@types/node": "^22.15.21", "eslint": "^9.27.0", "globals": "^16.1.0", "typescript": "^5.8.3", "typescript-eslint": "^8.32.1", "vite": "^6.3.5", "vite-plugin-dts": "^4.5.4", "vite-plugin-eslint": "^1.8.1", "vitepress": "^1.6.3", "vitepress-plugin-tabs": "^0.7.1", "vue": "^3.5.14" }, "peerDependencies": { "@bprogress/core": "^1.0.0", "svelte": "^3.0.0 || ^4.0.0 || ^5.0.0" }, "files": [ "dist" ], "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./server": { "types": "./dist/server.d.ts", "import": "./dist/server.js", "require": "./dist/server.cjs" }, "./inertia": { "types": "./dist/extensions/inertia.d.ts", "import": "./dist/extensions/inertia.js", "require": "./dist/extensions/inertia.cjs" }, "./bprogress": { "types": "./dist/extensions/bprogress.d.ts", "import": "./dist/extensions/bprogress.js", "require": "./dist/extensions/bprogress.cjs" }, "./svelte": { "types": "./dist/adapters/svelte/index.d.ts", "import": "./dist/adapters/svelte.js", "require": "./dist/adapters/svelte.cjs" } } }