-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "vite-plugin-browser-sync",
"type": "module",
"version": "4.0.0",
"packageManager": "pnpm@9.15.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"
},
"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",
"prepublishOnly": "npm run build"
},
"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"
}
}