Initial commit

This commit is contained in:
Brian McGonagill 2026-03-18 09:02:21 -05:00
commit b3a51a4115
10336 changed files with 2381973 additions and 0 deletions

34
node_modules/graphmatch/package.json generated vendored Normal file
View file

@ -0,0 +1,34 @@
{
"name": "graphmatch",
"repository": "github:fabiospampinato/graphmatch",
"description": "A low-level utility for matching a string against a directed acyclic graph of regexes.",
"license": "MIT",
"version": "1.1.1",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"benchmark": "tsex benchmark",
"benchmark:watch": "tsex benchmark --watch",
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"regex",
"regexp",
"dag",
"graph",
"match"
],
"devDependencies": {
"benchloop": "^2.1.1",
"fava": "^0.3.5",
"tsex": "^4.0.2",
"typescript": "^5.9.3"
}
}