-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "rollup-plugin-livereload",
"version": "2.0.5",
"description": "Rollup plugin for LiveReload that watches the bundle and reloads the page on change",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"scripts": {
"build": "tsup src/index.ts --clean --format esm,cjs --cjsInterop --dts",
"dev": "npm run build -- --watch",
"lint": "prettier -l .",
"fix": "prettier --write .",
"test": "vitest --single-thread",
"prepare": "npm run build"
},
"keywords": [
"rollup",
"rollup-plugin",
"livereload",
"lr"
],
"license": "MIT",
"author": "Thomas Ghysels <[email protected]>",
"homepage": "https://github.com/thgh/rollup-plugin-livereload",
"bugs": {
"url": "https://github.com/thgh/rollup-plugin-livereload/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thgh/rollup-plugin-livereload"
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"@types/livereload": "^0.9.1",
"livereload": "^0.9.1"
},
"devDependencies": {
"@types/ws": "^8.5.5",
"port-authority": "^1.1.1",
"prettier": "^3.0.1",
"rollup": "3",
"rollup-plugin-serve": "1",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
}
}