@synstack/glob
Version:
Glob pattern matching and file filtering utilities
66 lines (65 loc) • 1.7 kB
JSON
{
"name": "@synstack/glob",
"type": "module",
"publishConfig": {
"access": "public"
},
"version": "1.2.0",
"description": "Glob pattern matching and file filtering utilities",
"keywords": [
"glob",
"pattern-matching",
"file-filtering",
"filesystem",
"minimatch",
"file-search",
"path-matching"
],
"author": {
"name": "pAIrprog",
"url": "https://pairprog.io"
},
"homepage": "https://github.com/pAIrprogio/synscript/tree/main/packages/glob",
"repository": {
"type": "git",
"url": "https://github.com/pAIrprogio/synscript.git",
"directory": "packages/glob"
},
"license": "Apache-2.0",
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test:types": "tsc --noEmit",
"test:unit": "node --experimental-strip-types --experimental-test-snapshots --no-warnings --test src/**/*.test.ts",
"test:unit:watch": "node --experimental-strip-types --experimental-test-snapshots --no-warnings --watch --test --watch src/**/*.test.ts",
"test": "pnpm test:types && pnpm test:unit"
},
"exports": {
".": {
"import": {
"types": "./dist/glob.index.d.ts",
"default": "./dist/glob.index.js"
},
"require": {
"types": "./dist/glob.index.d.cts",
"default": "./dist/glob.index.cjs"
}
}
},
"dependencies": {
"@synstack/path": "^1.1.14",
"glob": "^11.0.3",
"minimatch": "^10.0.3"
},
"devDependencies": {
"@types/node": "^22.15.32",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"files": [
"src/**/*.ts",
"!src/**/*.test.ts",
"dist/**/*"
],
"gitHead": "48aa2c8c15458d93a91ead4e0bf3f66bbead9a90"
}