v1.0 with SW PWA enabled

This commit is contained in:
Blomios
2026-01-01 17:40:53 +01:00
parent 1c0e22aac1
commit 3c8bebb2ad
29775 changed files with 2197201 additions and 119080 deletions

View File

@ -1,6 +1,6 @@
{
"name": "path-scurry",
"version": "1.11.1",
"version": "2.0.1",
"description": "walk paths fast and efficiently",
"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",
"main": "./dist/commonjs/index.js",
@ -31,7 +31,7 @@
"presnap": "npm run prepare",
"test": "tap",
"snap": "tap",
"format": "prettier --write . --loglevel warn",
"format": "prettier --write . --log-level warn",
"typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts",
"bench": "bash ./scripts/bench.sh"
},
@ -48,24 +48,22 @@
"endOfLine": "lf"
},
"devDependencies": {
"@nodelib/fs.walk": "^1.2.8",
"@types/node": "^20.12.11",
"c8": "^7.12.0",
"eslint-config-prettier": "^8.6.0",
"@nodelib/fs.walk": "^2.0.0",
"@types/node": "^20.14.10",
"mkdirp": "^3.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.1",
"tap": "^18.7.2",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"tap": "^20.0.3",
"ts-node": "^10.9.2",
"tshy": "^1.14.0",
"typedoc": "^0.25.12",
"typescript": "^5.4.3"
"tshy": "^2.0.1",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"tap": {
"typecheck": true
},
"engines": {
"node": ">=16 || 14 >=14.18"
"node": "20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
@ -75,8 +73,8 @@
"url": "git+https://github.com/isaacs/path-scurry"
},
"dependencies": {
"lru-cache": "^10.2.0",
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
"lru-cache": "^11.0.0",
"minipass": "^7.1.2"
},
"tshy": {
"selfLink": false,
@ -85,5 +83,6 @@
".": "./src/index.ts"
}
},
"types": "./dist/commonjs/index.d.ts"
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js"
}