-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
68
69
70
71
{
"name": "vite-plugin-browser-sync",
"type": "module",
"version": "7.0.0",
"packageManager": "pnpm@10.33.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": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./client": {
"types": "./dist/client.d.ts"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"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",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vite": "^7.0.0 || ^8.0.0"
},
"dependencies": {
"@types/browser-sync": "catalog:",
"browser-sync": "catalog:",
"kolorist": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"eslint-import-resolver-node": "catalog:",
"playwright": "catalog:",
"rollup": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
}
}