UNPKG

inertia-title

Version:

Simple auto update title plugin for Inertia.js client adapters

57 lines (56 loc) 1.46 kB
{ "name": "inertia-title", "version": "2.0.0", "description": "Simple auto update title plugin for Inertia.js client adapters", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "import": "./dist/index.mjs" }, "./vue2": { "types": "./dist/vue2.d.ts", "require": "./dist/vue2.cjs", "import": "./dist/vue2.mjs" }, "./vue3": { "types": "./dist/vue3.d.ts", "require": "./dist/vue3.cjs", "import": "./dist/vue3.mjs" } }, "author": "Lucas Yang", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ycs77/inertia-laravel-ssr-head.git", "directory": "client" }, "homepage": "https://github.com/ycs77/inertia-laravel-ssr-head", "bugs": { "url": "https://github.com/ycs77/inertia-laravel-ssr-head/issues" }, "keywords": [ "inertia", "inertiajs", "head", "seo" ], "scripts": { "build": "npm run clean && npm run build:ts && npm run copy-dts-files", "build:ts": "tsup", "clean": "rm -rf dist vue2.d.ts vue2.d.mts vue3.d.ts vue3.d.mts", "copy-dts-files": "tsx scripts/copy-dts-files.ts" }, "devDependencies": { "@inertiajs/core": "^1.0.0", "@types/node": "^20.0.0", "tsup": "^8.2.0", "tsx": "^4.0.0", "typescript": "^5.4.0", "vue": "^3.4.0" } }