-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.31 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
{
"name": "rollup-plugin-watch",
"version": "1.0.4",
"description": "A rollup plugin to specify directories and files to watch",
"main": "dist/plugin.cjs.js",
"module": "dist/plugin.esm.js",
"types": "types/plugin.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"rollup",
"rollup-plugin",
"watch",
"directories",
"files",
"assets"
],
"files": [
"dist",
"types"
],
"exports": {
".": {
"types": "./types/plugin.d.ts",
"require": "./dist/plugin.js",
"import": "./dist/plugin.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jleeson/rollup-plugin-watch.git"
},
"author": "Jacob Leeson <jleeson2000@gmail.com> (https://twitter.com/jleesons)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jleeson/rollup-plugin-watch/issues"
},
"homepage": "https://github.com/jleeson/rollup-plugin-watch#readme",
"devDependencies": {
"esbuild": "^0.19.2",
"eslint": "^8.49.0",
"rollup": "^3.29.1",
"rollup-plugin-esbuild": "^5.0.0"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.4"
},
"peerDependencies": {
"rollup": "^2.x.x || ^3.x.x || ^4.x.x"
}
}