-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.45 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
{
"name": "esbuild-plugin-glob",
"version": "2.2.3",
"description": "glob entry points in esbuild",
"keywords": [
"esbuild",
"glob",
"watch"
],
"homepage": "https://github.com/waspeer/esbuild-plugin-glob",
"license": "MIT",
"author": "Wannes Salomé <mail@wannessalome.nl>",
"main": "dist/index.js",
"module": "dist/esbuild-plugin-glob.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint \"{test,src}/*.ts\"",
"prepare": "yarn build && husky install",
"test": "ava",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.2.12",
"minimatch": "^9.0.1",
"tiny-invariant": "^1.3.1",
"unixify": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/minimatch": "^5.1.2",
"@types/node": "^14",
"@types/unixify": "^1.0.0",
"@waspeer/eslint-config": "^1.6.1",
"auto-changelog": "^2.4.0",
"ava": "^5.2.0",
"del": "^6.1.1",
"esbuild": "^0.16.15",
"esbuild-register": "^3.4.2",
"eslint": "^8",
"husky": "^8.0.3",
"nanoid": "4",
"prettier": "^2.8.8",
"rollup": "^3.23.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"esbuild": "^0.x.x"
},
"engines": {
"node": ">=14"
}
}