vite-plugin-browser-sync
Version:
Add BrowserSync in your Vite project
64 lines • 1.59 kB
JSON
{
"name": "vite-plugin-browser-sync",
"type": "module",
"version": "6.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": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
},
"peerDependencies": {
"vite": "^6.0.0 || ^7.0.0"
},
"dependencies": {
"@types/browser-sync": "^2.29.1",
"browser-sync": "^3.0.4",
"kolorist": "^1.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/node": "^22.19.0",
"@vitest/coverage-v8": "^4.0.6",
"eslint": "^9.39.0",
"eslint-import-resolver-node": "^0.3.9",
"playwright": "^1.56.1",
"rollup": "^4.52.5",
"tsdown": "^0.15.12",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^4.0.6"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsdown src/index.ts",
"build:watch": "tsdown src/index.ts --watch",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "vitest",
"coverage": "vitest run --coverage"
}
}