UNPKG

vite-plugin-browser-sync

Version:
65 lines 1.56 kB
{ "name": "vite-plugin-browser-sync", "type": "module", "version": "4.0.0", "description": "Add BrowserSync in your Vite project", "author": "Applelo", "license": "MIT", "homepage": "https://github.com/Applelo/vite-plugin-browser-sync", "repository": { "type": "git", "url": "https://github.com/Applelo/vite-plugin-browser-sync" }, "bugs": "https://github.com/Applelo/vite-plugin-browser-sync/issues", "keywords": [ "browsersync", "browser-sync", "livereload", "serve", "vite", "vite-plugin" ], "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "engines": { "node": "^18.0.0 || >=20.0.0" }, "peerDependencies": { "vite": "^5.0.0 || ^6.0.0" }, "dependencies": { "@types/browser-sync": "^2.29.0", "browser-sync": "^3.0.3", "kolorist": "^1.8.0" }, "devDependencies": { "@antfu/eslint-config": "^3.12.0", "@vitest/coverage-v8": "^2.1.8", "eslint": "^9.17.0", "playwright": "^1.49.1", "rollup": "^4.28.1", "tsup": "^8.3.5", "typescript": "^5.7.2", "vite": "^6.0.3", "vitest": "^2.1.8" }, "scripts": { "lint": "eslint .", "lint:fix": "eslint . --fix", "build": "tsup src/index.ts", "build:watch": "tsup src/index.ts --watch", "typecheck": "tsc --noEmit --skipLibCheck", "test": "vitest", "coverage": "vitest run --coverage" } }