@lage-run/globby 13.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@lage-run/globby",
3
+ "version": "13.0.1",
4
+ "license": "MIT",
5
+ "description": "Bundled CJS wrapper of globby with caching support",
6
+ "main": "dist/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "source": "./src/index.mts",
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/index.js"
12
+ }
13
+ },
14
+ "scripts": {
15
+ "build": "yarn types && yarn transpile",
16
+ "transpile": "esbuild src/index.mts --bundle --platform=node --target=node14 --format=cjs --outfile=dist/index.js --tree-shaking",
17
+ "types": "yarn run -T tsc && yarn bundle:dts",
18
+ "bundle:dts": "yarn run -T dts-bundle-generator --config ./dts-bundle.config.js"
19
+ },
20
+ "devDependencies": {
21
+ "@lage-run/monorepo-scripts": "^1.0.0",
22
+ "esbuild": "^0.25.0",
23
+ "globby": "^13.0.0"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ]
28
+ }