CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json73 linesDownload Raw Back to path-scurry
1{2  "name": "path-scurry",3  "version": "2.0.2",4  "description": "walk paths fast and efficiently",5  "author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",6  "main": "./dist/commonjs/index.js",7  "type": "module",8  "exports": {9    "./package.json": "./package.json",10    ".": {11      "import": {12        "types": "./dist/esm/index.d.ts",13        "default": "./dist/esm/index.js"14      },15      "require": {16        "types": "./dist/commonjs/index.d.ts",17        "default": "./dist/commonjs/index.js"18      }19    }20  },21  "files": [22    "dist"23  ],24  "license": "BlueOak-1.0.0",25  "scripts": {26    "preversion": "npm test",27    "postversion": "npm publish",28    "prepublishOnly": "git push origin --follow-tags",29    "prepare": "tshy",30    "pretest": "npm run prepare",31    "presnap": "npm run prepare",32    "test": "tap",33    "snap": "tap",34    "format": "prettier --write . --log-level warn",35    "typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts",36    "bench": "bash ./scripts/bench.sh"37  },38  "devDependencies": {39    "@nodelib/fs.walk": "^3.0.1",40    "@types/node": "^25.3.0",41    "mkdirp": "^3.0.0",42    "prettier": "^3.3.2",43    "rimraf": "^6.1.3",44    "tap": "^21.6.1",45    "ts-node": "^10.9.2",46    "tshy": "^3.3.2",47    "typedoc": "^0.28.17"48  },49  "engines": {50    "node": "18 || 20 || >=22"51  },52  "funding": {53    "url": "https://github.com/sponsors/isaacs"54  },55  "repository": {56    "type": "git",57    "url": "git+https://github.com/isaacs/path-scurry"58  },59  "dependencies": {60    "lru-cache": "^11.0.0",61    "minipass": "^7.1.2"62  },63  "tshy": {64    "selfLink": false,65    "exports": {66      "./package.json": "./package.json",67      ".": "./src/index.ts"68    }69  },70  "types": "./dist/commonjs/index.d.ts",71  "module": "./dist/esm/index.js"72}73 
basant307/AI_Governance_Project · CoolFace