-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 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
{
"name": "rollup-plugin-auto-reload",
"version": "2.0.0",
"description": "Rollup plugin to automatically reload pages and bundles when changes are made",
"keywords": [
"livereload",
"reload",
"plugin",
"rollup",
"rollup-plugin",
"watch"
],
"author": "Martin Winandy <martin.winandy@tinylog.org>",
"license": "MIT",
"homepage": "https://github.com/pmwmedia/rollup-plugin-auto-reload",
"repository": {
"type": "git",
"url": "git+https://github.com/pmwmedia/rollup-plugin-auto-reload.git"
},
"bugs": {
"url": "https://github.com/pmwmedia/rollup-plugin-auto-reload/issues"
},
"engines": {
"node": ">= 18"
},
"main": "dist/index.js",
"module": "dist/module.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/client.js",
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/module.mjs",
"dist/module.mjs.map",
"license.md",
"readme.md"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"lint": "eslint *.mjs *.ts src/**/*",
"fix": "eslint *.mjs *.ts src/**/* --fix"
},
"dependencies": {
"magic-string": "^0.30.0",
"ws": "^8.12.1"
},
"peerDependencies": {
"rollup": "^3.18.0 || ^4.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "7.28.5",
"@eslint/js": "10.0.1",
"@rollup/plugin-babel": "7.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "24.12.2",
"@types/ws": "8.18.1",
"eslint": "10.3.0",
"eslint-plugin-simple-import-sort": "13.0.0",
"rollup": "4.60.3",
"rollup-plugin-dts": "6.4.1",
"tslib": "2.8.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.2"
}
}