-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.67 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-auto-reload",
"version": "1.0.3",
"description": "Rollup plugin to automatically reload pages and bundles when changes are made",
"keywords": [
"livereload",
"reload",
"plugin",
"rollup",
"rollup-plugin",
"watch"
],
"author": "Martin Winandy <[email protected]>",
"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": ">= 16"
},
"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 *.ts src/**/*"
},
"dependencies": {
"magic-string": "^0.30.0",
"ws": "^8.12.1"
},
"peerDependencies": {
"rollup": "^3.18.0 || ^4.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "20.17.11",
"@types/ws": "8.5.13",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"rollup": "4.29.2",
"rollup-plugin-dts": "6.1.1",
"tslib": "2.8.1",
"typescript": "5.7.2"
}
}