CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json53 linesDownload Raw Back to core
1{2  "name": "@humanfs/core",3  "version": "0.19.1",4  "description": "The core of the humanfs library.",5  "type": "module",6  "main": "dist/index.js",7  "types": "dist/index.d.ts",8  "exports": {9    "import": {10      "types": "./dist/index.d.ts",11      "default": "./src/index.js"12    }13  },14  "files": [15    "dist",16    "src"17  ],18  "scripts": {19    "build": "tsc",20    "prepare": "npm run build",21    "pretest": "npm run build",22    "test": "c8 mocha tests"23  },24  "repository": {25    "type": "git",26    "url": "git+https://github.com/humanwhocodes/humanfs.git"27  },28  "publishConfig": {29    "access": "public"30  },31  "keywords": [32    "filesystem",33    "fs",34    "hfs",35    "files"36  ],37  "author": "Nicholas C. Zakas",38  "license": "Apache-2.0",39  "bugs": {40    "url": "https://github.com/humanwhocodes/humanfs/issues"41  },42  "homepage": "https://github.com/humanwhocodes/humanfs#readme",43  "engines": {44    "node": ">=18.18.0"45  },46  "devDependencies": {47    "@humanfs/types": "^0.15.0",48    "c8": "^9.0.0",49    "mocha": "^10.2.0",50    "typescript": "^5.2.2"51  }52}53 
basant307/AI_Governance_Project · CoolFace